iced-yoda/web/examples/tour/src/lib.rs

9 lines
204 B
Rust
Raw Normal View History

2019-09-14 19:16:06 +02:00
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");
}