20 lines
630 B
Python
20 lines
630 B
Python
from app.api.auth import router as auth_router
|
|
from app.api.admin import router as admin_router
|
|
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",
|
|
]
|