etesync-server/etebase_fastapi/sendfile/backends/xsendfile.py

7 lines
148 B
Python
Raw Permalink Normal View History

2020-12-28 16:44:55 +00:00
from fastapi import Response
def sendfile(filename, **kwargs):
filename = str(filename)
return Response(headers={"X-Sendfile": filename})