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