mirror of
https://github.com/fastapi/fastapi.git
synced 2025-12-25 23:29:34 -05:00
10 lines
220 B
Python
10 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"
|