Initial public release

This commit is contained in:
sinmb79
2026-03-30 13:19:11 +09:00
commit 92a692b63c
116 changed files with 5822 additions and 0 deletions

14
hydra/api/strategies.py Normal file
View File

@@ -0,0 +1,14 @@
from fastapi import APIRouter, Depends
from hydra.api.auth import verify_api_key
router = APIRouter()
@router.get("/strategies")
async def list_strategies(_: str = Depends(verify_api_key)):
return {"strategies": [], "note": "Phase 1에서 구현 예정"}
@router.post("/strategies/{name}/start")
async def start_strategy(name: str, _: str = Depends(verify_api_key)):
return {"status": "not_implemented", "note": "Phase 1에서 구현 예정"}