11 lines
321 B
Python
11 lines
321 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class NotificationsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'core.apps.notifications'
|
|
|
|
def ready(self):
|
|
import core.apps.notifications.admin
|
|
from config.firebase import initialize_firebase
|
|
initialize_firebase() |