diff --git a/app/api/endpoints/auth.py b/app/api/endpoints/auth.py index 2883cb505..66b02dd57 100644 --- a/app/api/endpoints/auth.py +++ b/app/api/endpoints/auth.py @@ -4,7 +4,7 @@ from fastapi import APIRouter, HTTPException from pydantic import BaseModel from app import schemas -from app.core.auth_bridge import build_token_response, consume_plugin_auth_ticket +from app.core.auth import build_token_response, consume_plugin_auth_ticket from app.core.plugin import PluginManager from app.db.models.passkey import PassKey from app.db.models.user import User diff --git a/app/core/auth_bridge.py b/app/core/auth.py similarity index 100% rename from app/core/auth_bridge.py rename to app/core/auth.py