mirror of
https://github.com/mistakes-23/backend.git
synced 2025-10-31 23:47:25 +03:00
10 lines
231 B
Python
10 lines
231 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ProcessorConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "dock_checker.processor"
|
|
|
|
def ready(self):
|
|
import dock_checker.processor.signals
|