2024-02-14 16:01:21 +00:00
|
|
|
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
|
|
|
|
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
|
2024-02-14 17:02:42 +00:00
|
|
|
/*#[tauri::command]
|
2024-02-14 16:01:21 +00:00
|
|
|
fn greet(name: &str) -> String {
|
|
|
|
format!("Hello, {}! You've been greeted from Rust!", name)
|
|
|
|
}
|
2024-02-14 17:02:42 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#[tauri::command]
|
|
|
|
fn slice() {
|
|
|
|
println!("I was invoked from JS!");
|
|
|
|
}
|
2024-02-14 16:01:21 +00:00
|
|
|
|
|
|
|
fn main() {
|
2024-02-14 17:02:42 +00:00
|
|
|
println!("launched");
|
2024-02-14 16:01:21 +00:00
|
|
|
tauri::Builder::default()
|
2024-02-14 17:02:42 +00:00
|
|
|
//.invoke_handler(tauri::generate_handler![greet])
|
2024-02-14 16:01:21 +00:00
|
|
|
.run(tauri::generate_context!())
|
|
|
|
.expect("error while running tauri application");
|
|
|
|
}
|