Files
fquiz/api/app/models/__init__.py
T
chengkai3 d36aeb8636 [feat]:[FL-65][新增定时任务管理页面]
Co-authored-by: multica-agent <github@multica.ai>
2026-06-09 12:00:59 +08:00

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",
]