2025-04-30 15:03:40 +03:30
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AuthenticationConfig(AppConfig):
|
|
|
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
|
|
|
name = 'apps.authentication'
|
2025-07-16 12:21:29 +03:30
|
|
|
|
|
|
|
|
def ready(self):
|
|
|
|
|
import apps.authentication.signals
|