修改目录结构
This commit is contained in:
21
child/core/__init__.py
Normal file
21
child/core/__init__.py
Normal 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"
|
||||
Reference in New Issue
Block a user