From cae2fceca8d5a947d667c49cb313d50fcadc0e60 Mon Sep 17 00:00:00 2001 From: Nikita Gaziev <98274273+zobweyt@users.noreply.github.com> Date: Fri, 25 Oct 2024 18:46:17 +0300 Subject: [PATCH] chore: add redis settings --- src/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/config.py b/src/config.py index d393609..80e48e6 100644 --- a/src/config.py +++ b/src/config.py @@ -54,6 +54,9 @@ def length(self) -> int: class RedisSettings(BaseModel): host: str + port: int + password: str + ssl: bool class PostgresSettings(BaseModel):