File size: 153 Bytes
b18eae1
 
 
 
 
 
 
1
2
3
4
5
6
7
from fastapi import APIRouter, Depends

router = APIRouter(prefix="/routerssample", tags=["choices"])

@router.get("/sample")
def test():
    return True