pytauri_core/
tauri_runtime.rs

1//! tauri runtime configuration for pytauri.
2
3/// The current [tauri::Runtime] for pytauri.
4#[cfg(not(all(feature = "__test", not(feature = "__no_test"))))]
5pub type Runtime = tauri::Wry;
6
7#[cfg(all(feature = "__test", not(feature = "__no_test")))]
8pub type Runtime = tauri::test::MockRuntime;