mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-23 10:25:02 -05:00
10 lines
228 B
Python
10 lines
228 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import HTMLResponse
|
|
|
|
app = FastAPI(default_response_class=HTMLResponse)
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items():
|
|
return "<h1>Items</h1><p>This is a list of items.</p>"
|