mirror of
https://github.com/etesync/server
synced 2024-11-19 07:18:08 +00:00
163f7766f1
This is in preparation for creating a python package, which should only occupy the "etebase_server" name in the global module namespace.
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})
|