Files
catops/techdb/flightslot/apps.py
2025-11-14 12:01:14 +01:00

9 lines
287 B
Python

from django.apps import AppConfig
class FlightslotConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'flightslot'
def ready(self):
# Import only when application is ready otherwise signals will not be called
from . import signals