Files
django-stubs/django/contrib/staticfiles/views.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

10 lines
211 B
Python

from django.core.handlers.wsgi import WSGIRequest
from django.http.response import FileResponse
def serve(
request: WSGIRequest,
path: str,
insecure: bool = ...,
**kwargs
) -> FileResponse: ...