summaryrefslogtreecommitdiff
path: root/WebInterface/wasm/webhogg/src/app.rs
diff options
context:
space:
mode:
Diffstat (limited to 'WebInterface/wasm/webhogg/src/app.rs')
-rw-r--r--WebInterface/wasm/webhogg/src/app.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/WebInterface/wasm/webhogg/src/app.rs b/WebInterface/wasm/webhogg/src/app.rs
new file mode 100644
index 0000000..bee7c08
--- /dev/null
+++ b/WebInterface/wasm/webhogg/src/app.rs
@@ -0,0 +1,15 @@
+use crate::webhogg_exception::WebhoggException;
+
+pub struct WebhoggApplication {
+}
+
+impl WebhoggApplication {
+ pub fn new() -> Result<Self, WebhoggException> {
+ Ok(Self {
+ })
+ }
+
+ pub fn run(&mut self) -> Result<(), WebhoggException> {
+ Ok(())
+ }
+}