Fix import path: use database not app.database

This commit is contained in:
IT狗
2026-07-20 23:47:14 +08:00
parent e1c6537f38
commit 6f845e2cb6
+1 -1
View File
@@ -993,7 +993,7 @@ async def export_html_report(
from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from jose import JWTError, jwt
from database import SECRET_KEY, ALGORITHM
from app.database import get_db
from database import get_db
credentials_exception = HTTPException(
status_code=401,