summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/asm-paint/src/lib.rs
diff options
context:
space:
mode:
authornatrixaeria <janng@gmx.de>2019-06-11 20:24:45 +0200
committernatrixaeria <janng@gmx.de>2019-06-11 20:24:45 +0200
commitb21428c0ea29452e3edc5a11f72fa3e614ea617e (patch)
treef8f04744fe61700e59d68eec1de8dc562c1ed689 /WebInterface/wasm/asm-paint/src/lib.rs
parent8276c94169c7f6027691f124c63b61c815ab15a5 (diff)
Remove the WebInterface directory
and create webhogg project folder
Diffstat (limited to 'WebInterface/wasm/asm-paint/src/lib.rs')
-rw-r--r--WebInterface/wasm/asm-paint/src/lib.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/WebInterface/wasm/asm-paint/src/lib.rs b/WebInterface/wasm/asm-paint/src/lib.rs
deleted file mode 100644
index 6c773c5..0000000
--- a/WebInterface/wasm/asm-paint/src/lib.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-mod client_logger;
-mod shader;
-mod canvas;
-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 mut app = app::App::new().unwrap();
- app.run();
-}