mtp/wasm/src/lib.rs
Alex Emmet f4118f28ba Host & Client force randomness on each other.
Updated Reserved entry order. Made DataType ID changes easier in future
(this MAY NOT  happen again once in use).
2026-06-26 17:08:48 +02:00

15 lines
298 B
Rust

pub mod client;
pub mod crypto;
pub mod error;
pub mod message;
pub mod transport;
#[cfg(not(test))]
use wasm_bindgen::prelude::*;
#[cfg(not(test))]
#[wasm_bindgen(start)]
pub fn main() {
console_error_panic_hook::set_once();
web_sys::console::log_1(&"mtp-wasm: module loaded".into());
}