mirror of
https://github.com/fastapi/fastapi.git
synced 2026-02-14 00:01:17 -05:00
11 lines
202 B
Python
11 lines
202 B
Python
from fastapi import FastAPI
|
|
from fastapi.responses import FileResponse
|
|
|
|
some_file_path = "large-video-file.mp4"
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/")
|
|
async def main():
|
|
return FileResponse(some_file_path)
|