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
166 B

from fastapi import APIRouter
router = APIRouter()
@router.get("/dog")
def get_a_dog():
return "Woof"
@router.get("/cat")
def get_a_cat():
return "Meow"