mirror of
https://github.com/etesync/server
synced 2024-11-29 12:08:07 +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})
|