12 lines
334 B
Python
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.
|
|
|