11 lines
208 B
Python
11 lines
208 B
Python
![]() |
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class MiscConfig(AppConfig):
|
||
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
name = "misc"
|
||
|
|
||
|
def ready(self):
|
||
|
from .signals import deliver_setting
|
||
|
|