tauri-plugin-bare-kit 0.1.2

Effortless JavaScript backends for Tauri apps - Android 🤖 iOS 📱Linux 🐧 Macos 🖥️ Windows 💩
1
2
3
4
5
6
7
8
9
10
11
#[cfg(feature = "build")]
pub mod build;

#[cfg(feature = "runtime")]
pub mod runtime;

#[cfg(feature = "build")]
pub use crate::build::*;

#[cfg(feature = "runtime")]
pub use crate::runtime::*;