pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
170 B
13 lines
170 B
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/dog")
|
|
def get_b_dog():
|
|
return "B Woof"
|
|
|
|
|
|
@router.get("/cat")
|
|
def get_b_cat():
|
|
return "B Meow"
|
|
|