2024-11-24 02:03:06 +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();