Files
g2s-aggregator/app/controllers/middleware.py
T
Раис Юсупалиев adfa3e26de 001 Project structure
2026-03-07 13:41:30 +03:00

11 lines
233 B
Python

"""HTTP middleware registration."""
from fastapi import FastAPI
def install_middleware(app: FastAPI) -> None:
"""Register middleware components for the API."""
# Middleware stack is introduced in later tasks.
_ = app