9 lines
243 B
Python
9 lines
243 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import RedirectResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get('/', response_class=RedirectResponse)
|
|
async def chat_roll():
|
|
return RedirectResponse(url='https://www.youtube.com/watch?v=dQw4w9WgXcQ')
|