This commit is contained in:
18610128193
2026-06-08 14:41:46 +08:00
parent 41b597a785
commit c1a8a16502
+10
View File
@@ -0,0 +1,10 @@
from fastapi import APIRouter, Depends, HTTPException, Request
router = APIRouter(prefix="/test", tags=["test"])
@router.get("/")
async def test(req: Request):
return {"message": "test","code":200}