mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 18:46:40 +00:00
10 lines
217 B
Python
10 lines
217 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import FileResponse
|
|
|
|
some_file_path = "large-video-file.mp4"
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/", response_class=FileResponse)
|
|
async def main():
|
|
return some_file_path
|