Clean up and fix issues

This commit is contained in:
2025-11-18 17:58:29 +03:00
Unverified
parent d75baedf36
commit 92cc78d9ff
14 changed files with 259 additions and 99 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ import jwt
from typing import Optional, Any
import bcrypt
from constants import *
from constants import ACCESS_TOKEN_EXPIRE_HOURS, JWT_SECRET_KEY, JWT_ALGORITHM
# JWT Helper Functions
def create_token(user_id: int, username: str, session_id: str) -> str: