mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-13 07:41:06 -05:00
10 lines
222 B
Python
10 lines
222 B
Python
from fastapi import FastAPI, Response
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/headers-and-object/")
|
|
def get_headers(response: Response):
|
|
response.headers["X-Cat-Dog"] = "alone in the world"
|
|
return {"message": "Hello World"}
|