Rusty-slicer/src-tauri/src/main.rs

23 lines
650 B
Rust
Raw Normal View History

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
/*#[tauri::command]
2024-02-14 16:01:21 +00:00
fn greet(name: &str) -> String {
format!("Hello, {}! You've been greeted from Rust!", name)
}
*/
#[tauri::command]
fn slice() {
println!("I was invoked from JS!");
}
2024-02-14 16:01:21 +00:00
fn main() {
println!("launched");
2024-02-14 16:01:21 +00:00
tauri::Builder::default()
//.invoke_handler(tauri::generate_handler![greet])
2024-02-14 16:01:21 +00:00
.run(tauri::generate_context!())
.expect("error while running tauri application");
}