mirror of
https://github.com/magnum-opus-nn-cp/backend.git
synced 2025-02-23 23:20:41 +03:00
13 lines
308 B
Python
13 lines
308 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class TicketsConfig(AppConfig):
|
||
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
name = "press_release_nl.tickets"
|
||
|
|
||
|
def ready(self):
|
||
|
try:
|
||
|
import press_release_nl.tickets.signals # noqa F401
|
||
|
except ImportError:
|
||
|
pass
|