pytauri_core/
tauri_runtime.rs

1
2
3
4
5
6
7
8
//! tauri runtime configuration for pytauri.

/// The current [tauri::Runtime] for pytauri.
#[cfg(not(all(feature = "__test", not(feature = "__no_test"))))]
pub type Runtime = tauri::Wry;

#[cfg(all(feature = "__test", not(feature = "__no_test")))]
pub type Runtime = tauri::test::MockRuntime;