2024-11-23 22:48:37 +01:00

12 lines
148 B
JavaScript

import init from './pkg/web.js';
async function run() {
try {
await init();
} catch(e) {
console.error(e);
}
}
run();