mirror of
https://git.um-react.app/um/lib_um_crypto_rust.git
synced 2026-03-08 04:29:54 +00:00
14 lines
210 B
Rust
14 lines
210 B
Rust
use utils::set_panic_hook;
|
|
use wasm_bindgen::prelude::*;
|
|
|
|
mod errors;
|
|
mod utils;
|
|
|
|
pub mod exports;
|
|
|
|
/// Init panic hook
|
|
#[wasm_bindgen(js_name=initPanicHook)]
|
|
pub fn init_panic_hook() {
|
|
set_panic_hook();
|
|
}
|