// Copyright 2019-2024 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] #[tauri::command] fn greet(name: &str) -> String { format!("Hello {name}, You have been greeted from Rust!") } #[cfg_attr(feature = "cef", tauri::cef_entry_point)] fn main() { #[cfg(feature = "wry")] let builder = tauri::Builder::>::new(); #[cfg(feature = "cef")] let builder = tauri::Builder::>::new(); builder .invoke_handler(tauri::generate_handler![greet]) .run(tauri::generate_context!( "../../examples/helloworld/tauri.conf.json" )) .expect("error while running tauri application"); }