auth endpoints added

This commit is contained in:
2025-04-03 14:19:34 +03:00
parent 3583d178e9
commit ee405133be
37 changed files with 976 additions and 570 deletions

View File

@@ -8,9 +8,9 @@ class Configs(BaseSettings):
"""
PATH: str = ""
HOST: str = "",
PORT: int = 0,
LOG_LEVEL: str = "info",
HOST: str = ("",)
PORT: int = (0,)
LOG_LEVEL: str = ("info",)
RELOAD: int = 0
ACCESS_TOKEN_TAG: str = ""
@@ -36,7 +36,7 @@ class Configs(BaseSettings):
"host": self.HOST,
"port": int(self.PORT),
"log_level": self.LOG_LEVEL,
"reload": bool(self.RELOAD)
"reload": bool(self.RELOAD),
}
@property