mirror of
https://github.com/etesync/server
synced 2025-02-12 00:22:40 +00:00
![Xiretza](/assets/img/avatar_default.png)
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})
|