1 2 3 4 5 6 7 8 9 10 11
//! WASM bindings for the client module. #[cfg(feature = "batch")] pub mod batch; pub mod distributed; pub mod functions; pub mod types; pub use distributed::WASMClient; #[cfg(feature = "offline")] pub use types::WASMOfflinePEPClient;