link
Create GET endpoint
Get all items
@app.get("/items/") def read_items(): return [{"name": "Item 1"}, {"name": "Item 2"}]