mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 05:51:53 +08:00
7 lines
220 B
Python
7 lines
220 B
Python
from django.core.handlers.wsgi import WSGIRequest
|
|
|
|
|
|
class StaticFilesHandler:
|
|
def file_path(self, url: str) -> str: ...
|
|
def get_response(self, request: WSGIRequest): ...
|
|
def load_middleware(self) -> None: ... |