создана часть бекенда

This commit is contained in:
2025-11-30 19:31:06 +03:00
parent 4ae09c36b3
commit dc85e7c0c9
35 changed files with 1573 additions and 149 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ def pwd_hash(pwd_plant: str) -> str:
def pwd_verify(pwd_plant: str, pwd_hash: str) -> bool:
from my_loggers import logger
from utils.loggers import logger
try:
return pwd_context.verify(pwd_plant, pwd_hash)