mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-06 04:57:58 -05:00
14 lines
166 B
Python
14 lines
166 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/dog")
|
|
def get_a_dog():
|
|
return "Woof"
|
|
|
|
|
|
@router.get("/cat")
|
|
def get_a_cat():
|
|
return "Meow"
|