Source code for workflows.apps

"""Django application configuration for the ``workflows`` app."""

from importlib import import_module

from django.apps import AppConfig


[docs] class WorkflowsConfig(AppConfig): """Application configuration for the ``workflows`` app."""
[docs] name = 'workflows'
[docs] def ready(self) -> None: """Register signal handlers and executors. Called by Django when the application registry is fully populated. Imports modules for their side effects so that handlers and executors are registered with the framework. """ # Import for side effects: module-level code performs registrations. import_module('workflows.services.executors')