join tested auth service login/select completed

This commit is contained in:
2025-05-13 13:19:01 +03:00
parent 1d4f00e8b2
commit cd62d96158
34 changed files with 1360 additions and 231 deletions

View File

@@ -1,5 +1,5 @@
from typing import Union, Dict, Optional, Any
from Controllers.Redis.base import RedisRow
from .base import RedisRow
class RedisResponse:
@@ -10,13 +10,7 @@ class RedisResponse:
with tools to convert between different data representations.
"""
def __init__(
self,
status: bool,
message: str,
data: Any = None,
error: Optional[str] = None,
):
def __init__(self, status: bool, message: str, data: Any = None, error: Optional[str] = None):
"""
Initialize a Redis response.