File size: 245 Bytes
a38b4f9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# app/api/v1/utils.py
from fastapi.responses import FileResponse

def download_file(file_path: str):
    return FileResponse(
        path=file_path,
        filename=file_path.split("/")[-1],
        media_type="application/octet-stream"
    )