mirror of
https://github.com/lemeow125/DocManagerBackend.git
synced 2025-02-23 06:28:15 +08:00
11 lines
257 B
Python
11 lines
257 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "notifications"
|
|
|
|
def ready(self) -> None:
|
|
import notifications.signals
|
|
|
|
return super().ready()
|