mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-03 19:50:52 -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"
|