introduce NodeWasmService trait

This commit is contained in:
vms
2020-06-12 01:59:50 +03:00
parent 06de91968e
commit 9da7cc0957
7 changed files with 55 additions and 12 deletions

View File

@ -15,9 +15,15 @@
*/
mod node;
mod node_wasm_service;
pub use node::IpfsNode;
pub use node::NodeError;
pub use node::NodePublicInterface;
pub use node::NodeModulePublicInterface;
pub use node_wasm_service::NodeWasmService;
use fce::IValue;
use node::IpfsNode;
use std::path::PathBuf;