123456789101112131415161718192021222324252627 |
- #![cfg_attr(
- all(not(debug_assertions), target_os = "windows"),
- windows_subsystem = "windows"
- )]
- mod cmd;
- fn main() {
- tauri::AppBuilder::new()
- .invoke_handler(|_webview, arg| {
- use cmd::Cmd::*;
- match serde_json::from_str(arg) {
- Err(_) => {}
- Ok(command) => {
- match command {
- // definitions for your custom commands from Cmd here
- MyCustomCommand { argument } => {
- // your command code
- println!("{}", argument);
- }
- }
- }
- }
- })
- .build()
- .run();
- }
|