Files
2024-08-27 20:33:44 +02:00

9 lines
191 B
Python

from django.http import HttpResponse
def sendfile(request, filename, **kwargs):
"""
Dummy sendfile backend implementation.
"""
return HttpResponse("Dummy backend response")