Files
fnx_web/wasm/file_viewer/index.html
2020-01-14 17:10:03 +01:00

14 lines
287 B
HTML

<html>
<head>
<meta charset="utf-8"/>
<script src="wasm_exec.js"></script>
<script>
const go = new Go();
WebAssembly.instantiateStreaming(fetch("main.wasm"), go.importObject).then((result) => {
go.run(result.instance);
});
</script>
</head>
<body></body>
</html>