2022-08-28 21:13:21 +03:00
|
|
|
// Copyright 2019-2022 Tauri Programme within The Commons Conservancy
|
2022-01-17 16:46:14 +03:00
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
#![cfg_attr(
|
|
|
|
all(not(debug_assertions), target_os = "windows"),
|
|
|
|
windows_subsystem = "windows"
|
|
|
|
)]
|
|
|
|
|
|
|
|
use std::time::Instant;
|
|
|
|
|
|
|
|
#[tauri::command]
|
|
|
|
fn ping() {
|
|
|
|
dbg!(format!("ping: {:?}", Instant::now()));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "isolation"))]
|
|
|
|
fn main() {
|
|
|
|
compile_error!("Feature `isolation` is required to run this example");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "isolation")]
|
|
|
|
fn main() {
|
|
|
|
tauri::Builder::default()
|
|
|
|
.invoke_handler(tauri::generate_handler![ping])
|
2022-07-04 02:26:32 +03:00
|
|
|
.run(tauri::generate_context!(
|
|
|
|
"../../examples/isolation/tauri.conf.json"
|
|
|
|
))
|
2022-01-17 16:46:14 +03:00
|
|
|
.expect("error while running tauri application");
|
|
|
|
}
|