Files
linebot_finance/app/Trading/Router.py
henry4682 c0edc06ab1 feat: linbot
restruct the project
2026-03-10 10:15:22 +08:00

9 lines
199 B
Python

from fastapi import APIRouter
router = APIRouter(prefix="/Trading")
@router.get("/check-signals")
async def check_signals():
# TODO: 移植策略邏輯
return {"status": "not_implemented"}