summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/asm-paint/src/lib.rs
blob: 037e8e9ccecca41fb8f5c9d70fb4f741fe741385 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod client_logger;
mod site;
mod app;

use wasm_bindgen::prelude::*;

#[macro_use]
extern crate log;

#[wasm_bindgen(start)]
pub fn entry() {
    client_logger::init_logger();

    info!("begin running wasm application");

    let app = app::App::new().unwrap();
    app.run();
}