mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-23 05:19:46 -05:00
14 lines
174 B
Python
14 lines
174 B
Python
from fastapi.routing import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/dog")
|
|
def get_a_dog():
|
|
return "Woof"
|
|
|
|
|
|
@router.get("/cat")
|
|
def get_a_cat():
|
|
return "Meow"
|