webtools/site/gotemplate/main.js

8 lines
198 B
JavaScript
Raw Permalink Normal View History

2025-09-26 07:28:30 +00:00
import "/wasm/wasm_exec.js";
const go = new Go();
WebAssembly.instantiateStreaming(fetch("/wasm/gotemplate.wasm"), go.importObject)
.then((result) => {
go.run(result.instance);
});