mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-02-09 19:21:27 +08:00
10 lines
259 B
Python
10 lines
259 B
Python
from django.core.handlers.wsgi import WSGIRequest
|
|
from django.http.response import HttpResponseBase
|
|
|
|
|
|
class GZipMiddleware:
|
|
def process_response(
|
|
self,
|
|
request: WSGIRequest,
|
|
response: HttpResponseBase
|
|
) -> HttpResponseBase: ... |