9 lines
158 B
Python
9 lines
158 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DnsCmsConfig(AppConfig):
|
|
name = "dnscms"
|
|
|
|
def ready(self):
|
|
from dnscms import signals # noqa: F401
|