diff options
Diffstat (limited to 'webapp/src/main.rs')
-rw-r--r-- | webapp/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/webapp/src/main.rs b/webapp/src/main.rs index 73531d5..de4dd7a 100644 --- a/webapp/src/main.rs +++ b/webapp/src/main.rs @@ -8,6 +8,7 @@ use components::{AppContextProvider, ErrorInfo, OnlineTable}; extern crate wee_alloc; pub mod routing; use crate::{components::use_app_context, routing::Route}; +pub mod services; // Use `wee_alloc` as the global allocator. #[global_allocator] @@ -55,8 +56,6 @@ fn home() -> Html { }) }; - info!("home(): Error is {:?}", ctx.error()); - html! { <ul> <li>{ user }</li> |