airboardgame/public/exec/test.js

14 lines
280 B
JavaScript
Raw Normal View History

2020-10-03 13:37:30 +02:00
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;
};