Files
Plantilla_React/backend/app/routers/example_router.py
T

12 lines
244 B
Python

from fastapi import APIRouter
router = APIRouter(
prefix="/api",
tags=["example"],
responses={404: {"description": "Not found"}},
)
@router.get("/items")
async def read_items():
return [{"name": "Item 1"}, {"name": "Item 2"}]