Updated Reserved entry order. Made DataType ID changes easier in future (this MAY NOT happen again once in use).
15 lines
298 B
Rust
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());
|
|
}
|