feat: 实现命令面板、颜色取色、JSON格式化和系统信息功能
- 重构项目架构,采用四层架构模式 (Command → Service → Platform → Utils) - 实现命令面板功能,支持快捷搜索和特征分类 - 添加颜色取色功能,支持屏幕像素颜色获取 - 添加JSON格式化功能,支持JSON格式化和压缩 - 添加系统信息功能,显示操作系统和硬件信息 - 移除旧的状态文档和无用配置文件
This commit is contained in:
8
src-tauri/src/commands/mod.rs
Normal file
8
src-tauri/src/commands/mod.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
//! Tauri 命令处理层
|
||||
//!
|
||||
//! 定义与前端交互的 Tauri 命令,作为前端和业务逻辑之间的适配器
|
||||
|
||||
pub mod json_format_commands;
|
||||
pub mod picker_color_commands;
|
||||
pub mod system_info_commands;
|
||||
pub mod window_commands;
|
||||
Reference in New Issue
Block a user