mirror of
https://github.com/nirvana-7777/script.service.ultimate.git
synced 2026-09-18 15:12:12 +02:00
7 lines
262 B
Python
7 lines
262 B
Python
# streaming_providers/base/network/__init__.py
|
|
from .http_manager import HTTPManager, HTTPManagerFactory
|
|
from .proxy_manager import ProxyConfigManager
|
|
|
|
# Only export what consumers should use
|
|
__all__ = ["HTTPManager", "HTTPManagerFactory", "ProxyConfigManager"]
|