Files
yawn/static/index.js
T
2025-08-04 22:23:37 +05:30

11 lines
158 B
JavaScript

import wbg_init, { main, App } from "../pkg/wasm-index.js";
const start = async () => {
await wbg_init();
main();
const app = new App();
};
start();