mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-06 04:57:58 -05:00
14 lines
170 B
Python
14 lines
170 B
Python
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"
|