tauri-store 1.2.2

Persistent stores for Tauri
Documentation
1
2
3
4
5
6
7
8
9
10
#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]
mod desktop;
#[cfg(any(target_os = "android", target_os = "ios"))]
mod mobile;

#[cfg(any(target_os = "windows", target_os = "linux", target_os = "macos"))]
pub use desktop::Handle;

#[cfg(any(target_os = "android", target_os = "ios"))]
pub use mobile::Handle;