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

11 lines
211 B
Python

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}