mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
9 lines
220 B
Python
9 lines
220 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import RedirectResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/fastapi", response_class=RedirectResponse)
|
|
async def redirect_fastapi():
|
|
return "https://fastapi.tiangolo.com"
|