forked from imbytecat/fullstack-starter
chore
This commit is contained in:
8
apps/demo-server/src-tauri/src/commands/mod.rs
Normal file
8
apps/demo-server/src-tauri/src/commands/mod.rs
Normal file
@@ -0,0 +1,8 @@
|
||||
// 原生桌面功能命令
|
||||
// 未来可能包含: 文件对话框、系统通知、剪贴板等
|
||||
|
||||
// 示例命令 (可根据需要删除或替换)
|
||||
#[tauri::command]
|
||||
pub fn greet(name: &str) -> String {
|
||||
format!("Hello, {}! You've been greeted from Rust!", name)
|
||||
}
|
||||
Reference in New Issue
Block a user