mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +00:00
9 lines
199 B
Python
9 lines
199 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import RedirectResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/typer")
|
|
async def redirect_typer():
|
|
return RedirectResponse("https://typer.tiangolo.com")
|