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

23 lines
420 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 UI Module
================
用户界面模块提供所有GUI组件
"""
# 导入UI组件
from .main_window import MainWindow
from .setup_dialog import SetupDialog
from .traffic_widget import TrafficWidget
from .update_dialog import UpdateDialog
# 定义包的公开接口
__all__ = [
'MainWindow',
'SetupDialog',
'TrafficWidget',
'UpdateDialog'
]
# 包版本信息
__version__ = "1.0.0"