Feature/more code cleanup #22

Merged
Richie merged 16 commits from feature/more-code-cleanup into main 2026-06-14 15:03:46 -04:00
Showing only changes of commit 736717c2f8 - Show all commits
+5 -1
View File
@@ -1,10 +1,14 @@
"""Middleware for the FastAPI application."""
from compression import zstd
from typing import TYPE_CHECKING
from starlette.middleware.base import BaseHTTPMiddleware, RequestResponseEndpoint
from starlette.requests import Request
from starlette.responses import Response
if TYPE_CHECKING:
from starlette.requests import Request
MINIMUM_RESPONSE_SIZE = 500