10 lines
154 B
Python
10 lines
154 B
Python
|
|
"""
|
||
|
|
配置编辑器模块
|
||
|
|
"""
|
||
|
|
|
||
|
|
__version__ = "1.3"
|
||
|
|
__author__ = "Config Editor"
|
||
|
|
|
||
|
|
from main_window import ConfigEditor
|
||
|
|
|
||
|
|
__all__ = ['ConfigEditor']
|