refactor: add paths, services ctx, and extract models to own files

This commit is contained in:
Benjamin Labrecque
2026-07-22 12:04:55 +02:00
parent e324e3abed
commit 7e690a907e
16 changed files with 474 additions and 524 deletions
+20
View File
@@ -0,0 +1,20 @@
# Order matters to avoid circular imports
# ruff: isort: off
from .service import Service
from .iocs_overview import IocsOverview
from .master_hla_names import MasterHLANames
from .master_ioc_subs import MasterIocSubs
from .service_manager_ui import ServiceManagerUI
from .service_registry import ServiceRegistry
from .context import ServicesContext
# ruff: isort: on
__all__ = [
"ServicesContext",
"IocsOverview",
"MasterHLANames",
"MasterIocSubs",
"Service",
"ServiceManagerUI",
"ServiceRegistry",
]