refactor: Introduce utility functions for exception handling and database operations; update auth and playlist services to use new exception methods
All checks were successful
Backend CI / test (push) Successful in 3m58s

This commit is contained in:
JSC
2025-07-31 13:28:06 +02:00
parent f24698e3ff
commit b8346ab667
9 changed files with 679 additions and 122 deletions

View File

@@ -11,6 +11,7 @@ from app.models.plan import Plan
from app.models.user import User
from app.repositories.user import UserRepository
from app.utils.auth import PasswordUtils
from app.utils.database import create_and_save
class TestUserRepository: