feat: linbot

restruct the project
This commit is contained in:
2026-03-10 10:15:22 +08:00
parent 00c76bec37
commit c0edc06ab1
11 changed files with 748 additions and 241 deletions

9
app/Trading/Router.py Normal file
View File

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