Add index and main

This commit is contained in:
Valentin Tolmer
2021-05-08 12:00:52 +02:00
parent c58459547b
commit f8951d3b82
3 changed files with 24 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import init, { run_app } from './pkg/lldap_app.js';
async function main() {
await init('/pkg/lldap_app_bg.wasm');
run_app();
}
main()