kenken999's picture
test
275b9f3
raw
history blame
166 Bytes
from fastapi import APIRouter
router = APIRouter(prefix="/routerssample", tags=["choices"])
@router.get("/sample")
def test():
"""Return True"""
return True