mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-24 14:02:49 -05:00
14 lines
178 B
Python
14 lines
178 B
Python
from fastapi.routing import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/dog")
|
|
def get_b_dog():
|
|
return "B Woof"
|
|
|
|
|
|
@router.get("/cat")
|
|
def get_b_cat():
|
|
return "B Meow"
|