8 lines
198 B
JavaScript
8 lines
198 B
JavaScript
|
import "/wasm/wasm_exec.js";
|
||
|
|
||
|
const go = new Go();
|
||
|
|
||
|
WebAssembly.instantiateStreaming(fetch("/wasm/gotemplate.wasm"), go.importObject)
|
||
|
.then((result) => {
|
||
|
go.run(result.instance);
|
||
|
});
|