11 lines
225 B
Python
11 lines
225 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.notification'
|
|
|
|
def ready(self):
|
|
import apps.notification.signals
|
|
|