8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
|
import wasm from './api/main.go';
|
||
|
|
||
|
const { hello, helloName } = wasm;
|
||
|
|
||
|
(async () => {
|
||
|
console.log(await hello());
|
||
|
console.log(await helloName("world"));
|
||
|
})()
|