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

20 lines
630 B
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
__all__ = [
"auth_router",
"admin_router",
"portfolio_router",
"strategy_router",
"market_router",
"backtest_router",
"snapshot_router",
"data_explorer_router",
]