summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/webhogg/src/lib.rs
blob: 81a32377f731cffdb8ec2b10ae811cca562e241f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
mod client_logger;
mod webhogg_exception;
mod page;
mod canvas;
mod app;

use wasm_bindgen::prelude::*;
use app::WebhoggApplication as App;

#[macro_use]
extern crate log;

fn run_application() {
    match App::new().and_then(|app| app.run()) {
        Ok(_) => info!("program terminated successfully"),
        Err(e) => error!("program terminated with failure > {}", e)
    }
}

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

    info!("begin running wasm application");

    run_application()
}