Files
2026-02-25 15:22:23 +08:00

9 lines
133 B
Python

from fastapi import APIRouter
router = APIRouter()
@router.get("/")
async def hello():
return {
"hello" : "world"
}