mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 10:36:39 +00:00
9 lines
247 B
Python
9 lines
247 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import RedirectResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/pydantic", response_class=RedirectResponse, status_code=302)
|
|
async def redirect_pydantic():
|
|
return "https://pydantic-docs.helpmanual.io/"
|