monorepo/kifu/kifu-pwa/src/main.ts

10 lines
221 B
TypeScript
Raw Normal View History

2023-05-11 13:39:31 +00:00
import { CoreApi, initCore } from "./coreApi";
2023-05-10 13:42:02 +00:00
const main = async () => {
2023-05-11 13:39:31 +00:00
let coreApi = await initCore();
let response = await coreApi.playingField();
2023-05-10 13:42:02 +00:00
console.log("playing field response: ", response);
};
main();