gateway/modules/system/__init__.py
2026-01-25 03:01:01 +01:00

14 lines
398 B
Python

# Copyright (c) 2025 Patrick Motsch
# All rights reserved.
"""
System Module - Contains system-level infrastructure:
- registry.py: Feature container discovery and loading
- mainSystem.py: System-level RBAC objects (UI, DATA, RESOURCE)
"""
from modules.system.registry import (
loadFeatureRouters,
loadFeatureMainModules,
discoverFeatureContainers,
registerAllFeaturesInCatalog,
)