9 lines
204 B
Rust
9 lines
204 B
Rust
|
|
use wasm_bindgen::prelude::*;
|
||
|
|
|
||
|
|
#[wasm_bindgen(start)]
|
||
|
|
pub fn run() {
|
||
|
|
console_error_panic_hook::set_once();
|
||
|
|
console_log::init_with_level(log::Level::Trace)
|
||
|
|
.expect("Initialize logging");
|
||
|
|
}
|