mirror of
https://github.com/spbleadersofdigtal/backend.git
synced 2024-11-22 19:36:32 +03:00
13 lines
316 B
Python
13 lines
316 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class TicketsConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "pitch_deck_generator.tickets"
|
|
|
|
def ready(self):
|
|
try:
|
|
import pitch_deck_generator.tickets.signals # noqa F401
|
|
except ImportError:
|
|
pass
|