link
Create POST endpoint
Create new item
@app.post("/items/") def create_item(item: Item): db.save(item) return item