galaxis-po/backend/app/api/__init__.py

40 lines
1.4 KiB
Python
Raw Normal View History

from app.api.auth import router as auth_router
from app.api.admin import router as admin_router
2026-02-03 07:06:55 +09:00
from app.api.portfolio import router as portfolio_router
from app.api.strategy import router as strategy_router
from app.api.market import router as market_router
from app.api.backtest import router as backtest_router
from app.api.snapshot import router as snapshot_router
from app.api.data_explorer import router as data_explorer_router
from app.api.signal import router as signal_router
from app.api.notification import router as notification_router
from app.api.journal import router as journal_router
from app.api.position_sizing import router as position_sizing_router
from app.api.pension import router as pension_router
from app.api.drawdown import router as drawdown_router
from app.api.benchmark import router as benchmark_router
from app.api.tax_simulation import router as tax_simulation_router
from app.api.correlation import router as correlation_router
from app.api.optimizer import router as optimizer_router
__all__ = [
"auth_router",
"admin_router",
"portfolio_router",
"strategy_router",
"market_router",
"backtest_router",
"snapshot_router",
"data_explorer_router",
"signal_router",
"notification_router",
"journal_router",
"position_sizing_router",
"pension_router",
"drawdown_router",
"benchmark_router",
"tax_simulation_router",
"correlation_router",
"optimizer_router",
]