cr-tools 0.4.0

Simple calculator for Clash Royale
Documentation
#![recursion_limit = "512"]

// Export as library
pub mod logic;

// For use in the web app only
pub(crate) mod components;
pub(crate) mod constants;

use components::app;
use wasm_bindgen::prelude::*;
use yew::web_sys::console;

/// The app's main entry point
#[wasm_bindgen(start)]
pub fn run_app() -> Result<(), JsValue> {
    // Log the license notice
    console::group_1(&constants::license::license_notice_title().into());
    console::log_1(&constants::license::license_notice_body().into());
    console::group_end();

    // Start the yew app
    yew::start_app::<app::App>();

    // Clean exit
    Ok(())
}