сделал ревью системы
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-04-28 22:13:47 +10:00
parent c564140428
commit 25f2c09064
18 changed files with 1169 additions and 712 deletions

20
services/__init__.py Normal file
View File

@@ -0,0 +1,20 @@
"""
Сервисы приложения
"""
from .proxy_manager import (
download_proxies,
get_shuffled_proxies,
fetch_with_proxy,
fetch_with_proxy_retry
)
from .gpt_client import gpt_response_message
from .document_builder import update_bd_and_create_document
__all__ = [
'download_proxies',
'get_shuffled_proxies',
'fetch_with_proxy',
'fetch_with_proxy_retry',
'gpt_response_message',
'update_bd_and_create_document'
]