1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![allow(dead_code, unused)]

pub mod dev;

use wasm_bindgen::prelude::*;
use ss_web_utils::js::{self, console};

#[wasm_bindgen]
pub fn main() -> Result<(), wasm_bindgen::JsValue> {
    console_error_panic_hook::set_once();
    console::log("running...");
    // dev::main();
    Ok(())
}