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