fix some breakages

This commit is contained in:
Timothy Farrell 2026-04-12 10:59:19 +00:00
parent 396060041f
commit 9fd80f5d12

View File

@ -15,6 +15,9 @@ from fastapi import FastAPI, HTTPException, Depends
from fastapi.security import HTTPBasic, HTTPBasicCredentials
from fastapi.responses import FileResponse, HTMLResponse, RedirectResponse, StreamingResponse
app = FastAPI()
file_mapping = {}
indexers = []
AUTH_SCHEME = HTTPBasic()
expected_password: str | None = None