1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-04-16 14:12:14 +00:00

20 lines
609 B
Rust
Raw Normal View History

2019-01-16 10:26:10 -08:00
use wasmer_runtime::{
backend::SigRegistry,
memory::LinearMemory,
module::{
DataInitializer, ExportIndex, ImportName, ModuleInner, TableInitializer,
},
types::{
ElementType, FuncIndex, FuncSig,
Global, GlobalDesc, GlobalIndex,
Initializer, Map, TypedIndex, Memory,
MemoryIndex as WasmerMemoryIndex, SigIndex as WasmerSignatureIndex, Table as WasmerTable,
TableIndex as WasmerTableIndex, Type as WasmerType, GlobalInit as WasmerGlobalInit,
},
vm::{self, Ctx as WasmerVMContext},
};
/// This is a wasmer module.
pub struct Module {
}