Files
MediaCast4/ui/__init__.py
2026-01-12 10:48:20 +08:00

12 lines
150 B
Python

"""
用户界面模块
包含主窗口和各种UI组件。
"""
__all__ = [
"MainWindow",
]
# 导入UI组件
from .main_window import MainWindow