mirror of
https://github.com/leaders-of-digital-9-task/backend.git
synced 2024-11-14 13:36:40 +03:00
13 lines
283 B
Python
13 lines
283 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class DicomConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "dicom"
|
|
|
|
def ready(self):
|
|
try:
|
|
import image_markuper.dicom.signals # noqa F401
|
|
except ImportError:
|
|
pass
|