Files

9 lines
191 B
Python
Raw Permalink Normal View History

2024-08-27 20:33:44 +02:00
from django.http import HttpResponse
def sendfile(request, filename, **kwargs):
"""
Dummy sendfile backend implementation.
"""
return HttpResponse("Dummy backend response")