moving user_state out of shared

This commit is contained in:
msramalho
2025-02-10 23:51:35 +00:00
parent 1877999a70
commit b452ec9869
7 changed files with 6 additions and 6 deletions

View File

@@ -6,7 +6,7 @@ from fastapi.security import HTTPBearer, HTTPAuthorizationCredentials
from app.shared.config import ALLOW_ANY_EMAIL
from app.shared.settings import get_settings
from app.shared.db.database import get_db
from app.shared.db.user_state import UserState
from app.web.db.user_state import UserState
settings = get_settings()
bearer_security = HTTPBearer()