mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
13 lines
178 B
Python
13 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"
|