auth endpoints added
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user