iced-yoda/web/examples/tour/src/lib.rs
2019-09-14 19:16:06 +02:00

8 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");
}