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