webtools/site/timestamps/main.js

9 lines
199 B
JavaScript
Raw Permalink Normal View History

2025-11-19 10:20:06 +00:00
import "/wasm/wasm_exec.js";
const go = new Go();
WebAssembly.instantiateStreaming(fetch("/wasm/timestamps.wasm"), go.importObject)
.then((result) => {
go.run(result.instance);
});