Files
EZProxy/child/core/__init__.py
2025-11-10 17:29:11 +08:00

21 lines
403 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""
EZProxy Core Module
==================
核心功能模块包含v2ray管理、代理管理和更新管理
"""
# 导入核心组件
from .v2ray_manager import V2RayManager
from .proxy_manager import ProxyManager
from .update_manager import UpdateManager
# 定义包的公开接口
__all__ = [
'V2RayManager',
'ProxyManager',
'UpdateManager'
]
# 包版本信息
__version__ = "1.0.0"