kenken999's picture
test
275b9f3
raw
history blame
264 Bytes
このテンプレートを元に helloworld を作成
router部分の作成のみ、registerはいらない
from fastapi import APIRouter, Depends
router = APIRouter(prefix="/routerssample", tags=["choices"])
@router.get("/sample")
def test():
return True