SIT/ui/__init__.py

9 lines
95 B
Python

"""
UI模块初始化
"""
from .main_window import MainWindow
__all__ = [
'MainWindow',
]