11 lines
261 B
Python
11 lines
261 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ManageNotificationsConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "manage_notifications"
|
|
|
|
def ready(self):
|
|
# Import signal handlers here
|
|
from . import signals
|