airboardgame/public/exec/test.js
2020-10-28 22:13:32 +01:00

13 lines
280 B
JavaScript

const callAnother = () => {
console.log("titi");
};
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;
};