Skip to content

Instantly share code, notes, and snippets.

@2S1one
Created May 12, 2024 14:15
Show Gist options
  • Save 2S1one/ae629c8ed5dae82fcf0621a184729ce2 to your computer and use it in GitHub Desktop.
Save 2S1one/ae629c8ed5dae82fcf0621a184729ce2 to your computer and use it in GitHub Desktop.
from fastapi import FastAPI
from fastapi.responses import RedirectResponse
app = FastAPI()
@app.get("/")
async def redirector(destination: str):
return RedirectResponse(destination)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment