11 lines
340 B
Python
11 lines
340 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class NotificacionesConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'api.notificaciones'
|
|
|
|
def ready(self):
|
|
import api.notificaciones.signals.notificaciones
|
|
# Import other signals if needed
|
|
# import api.notificaciones.signals.other_signal |