Spaces:
Running
on
Zero
Running
on
Zero
File size: 208 Bytes
275b9f3 |
1 2 3 4 5 6 7 8 |
このテンプレートを元に helloworld を作成
from fastapi import APIRouter, Depends
router = APIRouter(prefix="/routerssample", tags=["choices"])
@router.get("/sample")
def test():
return True |