mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-21 23:47:59 +00:00
11 lines
173 B
Rust
11 lines
173 B
Rust
fn main() {
|
|
#[cfg(feature = "std")]
|
|
{
|
|
substrate_wasm_builder::WasmBuilder::new()
|
|
.with_current_project()
|
|
.export_heap_base()
|
|
.import_memory()
|
|
.build();
|
|
}
|
|
}
|