14 lines
398 B
Python
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,
|
|
)
|