12 lines
360 B
Python
12 lines
360 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AutomationOrchestrationConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'automation_orchestration'
|
|
verbose_name = 'Automation & Orchestration'
|
|
|
|
def ready(self):
|
|
"""Import signal handlers when the app is ready"""
|
|
import automation_orchestration.signals
|