14 lines
373 B
Python
14 lines
373 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AppointmentsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'appointments'
|
|
|
|
def ready(self):
|
|
"""
|
|
Import signal handlers when the app is ready.
|
|
This ensures signals are connected when Django starts.
|
|
"""
|
|
import appointments.signals # noqa: F401
|