2026-09-11 22:31:51 +08:00
|
|
|
"""Compatibility exports for opening-risk questionnaire profiles.
|
2026-09-11 12:57:07 +08:00
|
|
|
|
2026-09-11 22:31:51 +08:00
|
|
|
The canonical ``profile_snapshots`` mapping lives in ``app.model.profile``. Keeping
|
|
|
|
|
two declarative classes for the same table makes SQLAlchemy reject model imports,
|
|
|
|
|
so this module re-exports the canonical class for existing callers.
|
|
|
|
|
"""
|
2026-09-11 12:57:07 +08:00
|
|
|
|
|
|
|
|
from app.model.fund import FundRiskAssessment as RiskAssessment
|
2026-09-11 22:31:51 +08:00
|
|
|
from app.model.profile import ProfileSnapshot
|
2026-09-11 12:57:07 +08:00
|
|
|
|
|
|
|
|
__all__ = ["ProfileSnapshot", "RiskAssessment"]
|