d36aeb8636
Co-authored-by: multica-agent <github@multica.ai>
31 lines
811 B
Python
31 lines
811 B
Python
"""Database model package.
|
|
|
|
Import all model modules during package initialization so SQLAlchemy can
|
|
resolve string-based relationships regardless of route/service import order.
|
|
"""
|
|
|
|
from . import atp_model, audit_log, auth_session, elevation, file_storage, fl_analysis, lightning_event, lightning_sample, line, line_tower, menu, object_group, rbac, scheduled_task, system_param, tower_model, tower_profile, user, wine, worker_registry
|
|
|
|
__all__ = [
|
|
"atp_model",
|
|
"audit_log",
|
|
"auth_session",
|
|
"elevation",
|
|
"file_storage",
|
|
"fl_analysis",
|
|
"lightning_event",
|
|
"lightning_sample",
|
|
"line",
|
|
"line_tower",
|
|
"menu",
|
|
"object_group",
|
|
"rbac",
|
|
"scheduled_task",
|
|
"system_param",
|
|
"tower_model",
|
|
"tower_profile",
|
|
"user",
|
|
"wine",
|
|
"worker_registry",
|
|
]
|