summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/asm-paint/src/lib.rs
diff options
context:
space:
mode:
authornatrixaeria <janng@gmx.de>2019-05-26 16:09:03 +0200
committernatrixaeria <janng@gmx.de>2019-05-26 16:09:03 +0200
commitfb31751fab32c8b67affd75603084e4f143bc758 (patch)
tree1f4ba292480c00e8935748a59b1c067c0c5126f1 /WebInterface/wasm/asm-paint/src/lib.rs
parente2e4f0f698b95ca979e78ac12fa2395635321dd3 (diff)
Add basic project structure
Diffstat (limited to 'WebInterface/wasm/asm-paint/src/lib.rs')
-rw-r--r--WebInterface/wasm/asm-paint/src/lib.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/WebInterface/wasm/asm-paint/src/lib.rs b/WebInterface/wasm/asm-paint/src/lib.rs
index fea9d0f..037e8e9 100644
--- a/WebInterface/wasm/asm-paint/src/lib.rs
+++ b/WebInterface/wasm/asm-paint/src/lib.rs
@@ -1,4 +1,6 @@
mod client_logger;
+mod site;
+mod app;
use wasm_bindgen::prelude::*;
@@ -9,5 +11,8 @@ extern crate log;
pub fn entry() {
client_logger::init_logger();
- info!("{}", 42);
+ info!("begin running wasm application");
+
+ let app = app::App::new().unwrap();
+ app.run();
}