airboardgame/public/exec/test.js
2021-08-29 14:27:18 +02:00

13 lines
279 B
JavaScript

const callAnother = () => {
console.log("Foo");
};
const main = async () => {
callAnother();
console.log("Received params", query, body, test);
//console.log(await store.create("games", { name: "toto" }));
console.log(await store.list("games", {}));
return 42;
};