Generateurv2/backend/api/exercices/apps.py
2022-05-18 10:15:54 +02:00

12 lines
334 B
Python

from django.apps import AppConfig
class ExercicesConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'exercices'
def ready(self):
# Implicitly connect a signal handlers decorated with @receiver.
from . import signals
# Explicitly connect a signal handler.