Files
tauri/examples/helloworld/main.rs
2026-01-26 14:13:53 -03:00

25 lines
763 B
Rust

// 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(not(feature = "cef"))]
let builder = tauri::Builder::<tauri::Wry>::new();
#[cfg(feature = "cef")]
let builder = tauri::Builder::<tauri::Cef>::new();
builder
.invoke_handler(tauri::generate_handler![greet])
.run(tauri::generate_context!(
"../../examples/helloworld/tauri.conf.json"
))
.expect("error while running tauri application");
}