refactor(storage): move reply & processed files

This commit is contained in:
2026-07-29 19:11:16 +05:00
parent 517be61ddf
commit fbeb80eece
4 changed files with 13 additions and 6 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ class Config:
self._config_data = self._load()
logger.info("Конфигурация успешно загружена.")
def _load_replies(self, file_path: str = "replies.txt"):
def _load_replies(self, file_path: str = "storage/replies.txt"):
try:
reply_lines = []
with open(file_path, "r", encoding="utf-8") as replies: