修改目录结构

This commit is contained in:
2025-11-10 17:29:11 +08:00
Unverified
parent d5955bbbdd
commit ed9574e4c4
28 changed files with 0 additions and 0 deletions

21
child/core/__init__.py Normal file
View File

@@ -0,0 +1,21 @@
"""
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"