mirror of
https://github.com/etesync/server
synced 2024-11-19 23:38:08 +00:00
7 lines
148 B
Python
7 lines
148 B
Python
from fastapi import Response
|
|
|
|
|
|
def sendfile(filename, **kwargs):
|
|
filename = str(filename)
|
|
return Response(headers={"X-Sendfile": filename})
|