mirror of https://github.com/tiangolo/fastapi.git
23 lines
381 B
Python
23 lines
381 B
Python
from typing import List
|
|
|
|
from fastapi import FastAPI
|
|
from pydantic import BaseModel
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
class Item(BaseModel):
|
|
name: str
|
|
description: str
|
|
|
|
|
|
items = [
|
|
{"name": "Foo", "description": "There comes my hero"},
|
|
{"name": "Red", "description": "It's my aeroplane"},
|
|
]
|
|
|
|
|
|
@app.get("/items/", response_model=List[Item])
|
|
async def read_items():
|
|
return items
|