1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! AgentLink SDK WASM //! //! WebAssembly bindings for AgentLink SDK. //! This crate provides JavaScript/TypeScript bindings for the core SDK functionality. mod bindings; mod http; mod mqtt; pub use bindings::*; pub use http::WasmHttpClient; pub use mqtt::WasmMqttClient; use wasm_bindgen::prelude::*; /// Initialize the SDK #[wasm_bindgen] pub fn init() { bindings::start(); }