mirror of
https://github.com/henry4682/linebot_finance.git
synced 2026-05-16 04:41:52 +00:00
9 lines
199 B
Python
Executable File
9 lines
199 B
Python
Executable File
from fastapi import APIRouter
|
|
|
|
router = APIRouter(prefix="/Trading")
|
|
|
|
|
|
@router.get("/check-signals")
|
|
async def check_signals():
|
|
# TODO: 移植策略邏輯
|
|
return {"status": "not_implemented"} |