agentlink-wasm 0.1.1

AgentLink SDK WASM - WebAssembly bindings for browser/Node.js
//! 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();
}