builders intial

This commit is contained in:
NikVolf
2017-04-06 11:34:31 +03:00
parent 1f09d620e8
commit 74b310113e
9 changed files with 276 additions and 2 deletions

7
src/builder/mod.rs Normal file
View File

@ -0,0 +1,7 @@
//! Various builders to generate/alter wasm components
mod invoke;
mod module;
mod code;
pub use self::module::{module, ModuleBuilder};