mirror of
https://github.com/peeringdb/peeringdb.git
synced 2024-05-11 05:55:09 +00:00
10 lines
202 B
Python
10 lines
202 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PeeringDBServerAppConfig(AppConfig):
|
|
name = "peeringdb_server"
|
|
verbose_name = "PeeringDB"
|
|
|
|
def ready(self):
|
|
import peeringdb_server.signals
|