summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/webhogg/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/wasm/webhogg/src/lib.rs')
-rw-r--r--WebInterface/wasm/webhogg/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/WebInterface/wasm/webhogg/src/lib.rs b/WebInterface/wasm/webhogg/src/lib.rs
index 8b75ee1..81a3237 100644
--- a/WebInterface/wasm/webhogg/src/lib.rs
+++ b/WebInterface/wasm/webhogg/src/lib.rs
@@ -1,5 +1,7 @@
mod client_logger;
mod webhogg_exception;
+mod page;
+mod canvas;
mod app;
use wasm_bindgen::prelude::*;
@@ -9,7 +11,7 @@ use app::WebhoggApplication as App;
extern crate log;
fn run_application() {
- match App::new().and_then(|mut app| app.run()) {
+ match App::new().and_then(|app| app.run()) {
Ok(_) => info!("program terminated successfully"),
Err(e) => error!("program terminated with failure > {}", e)
}