初始化项目以及GUI简单实现

This commit is contained in:
moweishan
2026-03-18 15:48:40 +08:00
parent f7e429a9b3
commit b67c5be2f3
25 changed files with 1650 additions and 0 deletions

8
src/ui/__init__.py Normal file
View File

@@ -0,0 +1,8 @@
"""
LuoLuoTool UI模块
使用CustomTkinter构建现代化界面
"""
from .app import LuoLuoApp
__all__ = ["LuoLuoApp"]