12 lines
266 B
Python
12 lines
266 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AisConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'ai'
|
|
|
|
def ready(self):
|
|
# noinspection PyUnresolvedReferences
|
|
from . import events # register events
|
|
pass
|