This commit is contained in:
20
services/__init__.py
Normal file
20
services/__init__.py
Normal 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'
|
||||
]
|
||||
Reference in New Issue
Block a user