Files
video-gen/video-gen-api/app/api/v1/test.py
T
2026-06-08 15:07:46 +08:00

11 lines
216 B
Python

from fastapi import APIRouter, Depends, HTTPException, Request
router = APIRouter(prefix="/test", tags=["test"])
@router.get("/index")
async def test(req: Request):
return {"message": "test","code":200}