Initial commit

This commit is contained in:
Alex Crichton
2017-12-14 19:31:01 -08:00
commit 2926e6e9f4
15 changed files with 696 additions and 0 deletions

12
src/lib.rs Normal file
View File

@ -0,0 +1,12 @@
#![feature(use_extern_macros)]
extern crate wasm_bindgen_macro;
pub mod prelude {
pub use wasm_bindgen_macro::wasm_bindgen;
pub use Object;
}
pub struct Object {
idx: u32,
}