10 lines
235 B
Python
10 lines
235 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AuthorizationConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.authorization'
|
|
|
|
def ready(self):
|
|
import apps.authorization.signals # noqa
|