mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-14 00:01:17 -05:00
9 lines
173 B
Python
9 lines
173 B
Python
from fastapi import FastAPI, status
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/items/", status_code=status.HTTP_201_CREATED)
|
|
async def create_item(name: str):
|
|
return {"name": name}
|