PillarTool/pillar_tool/__init__.py
2025-12-21 15:58:50 +01:00

5 lines
190 B
Python

from fastapi import FastAPI
from starlette.middleware.authentication import AuthenticationMiddleware
app = FastAPI()
app.add_middleware(AuthenticationMiddleware, backend=BasicAuthBackend())