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
//! The frontend library
#![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};

/// The global session cookie name
const SESSION_COOKIE: &str = "sessionToken";

/// Start the application
#[wasm_bindgen]
pub fn run_app() -> Result<(), JsValue> {
    // Initialize the logger
    init_logger().map_err(|e| JsValue::from(e.to_string()))?;

    // Run the application
    yew::start_app::<RootComponent>();
    Ok(())
}