Files
eth_hedge_sim/backend/app/api/__init__.py
T
dekun 2b348854fe Add DB+.env auto backup with download and upload restore in Settings.
Backups land under /root/eth_hedge_backups; restore accepts zip body for new-server migration and restarts the process.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-26 23:05:58 +08:00

21 lines
697 B
Python

from fastapi import APIRouter
from .auth_routes import router as auth_router
from .backup_routes import router as backup_router
from .market import router as market_router
from .plan import router as plan_router
from .settings import router as settings_router
from .sim import router as sim_router
from .stats import router as stats_router
from .trades import router as trades_router
router = APIRouter()
router.include_router(auth_router)
router.include_router(market_router)
router.include_router(sim_router)
router.include_router(plan_router)
router.include_router(trades_router)
router.include_router(stats_router)
router.include_router(settings_router)
router.include_router(backup_router)