Spaces:
Running
on
Zero
Running
on
Zero
File size: 166 Bytes
275b9f3 |
1 2 3 4 5 6 7 8 |
from fastapi import APIRouter
router = APIRouter(prefix="/routerssample", tags=["choices"])
@router.get("/sample")
def test():
"""Return True"""
return True |