10 lines
229 B
Python
10 lines
229 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class BookingConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'booking'
|
|
|
|
def ready(self):
|
|
import booking.signals # <-- this line is important
|