1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#![deny(missing_docs)]
#![recursion_limit = "512"]
use wasm_bindgen::prelude::*;
#[macro_use]
mod api;
mod component;
mod route;
mod service;
mod string;
use crate::{component::root::RootComponent, service::log::init_logger};
const SESSION_COOKIE: &str = "sessionToken";
#[wasm_bindgen]
pub fn run_app() -> Result<(), JsValue> {
init_logger().map_err(|e| JsValue::from(e.to_string()))?;
yew::start_app::<RootComponent>();
Ok(())
}