symcode-webapp 0.1.0

Symbolic Barcode - Web App
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use wasm_bindgen::prelude::*;

pub mod app;
pub mod canvas;
pub mod common;
pub mod debugger;
pub mod helper;
pub mod util;

#[wasm_bindgen(start)]
pub fn main() {
    util::set_panic_hook();
    console_log::init().unwrap();
}