2020-10-03 13:37:30 +02:00
|
|
|
const callAnother = () => {
|
2021-08-05 23:09:57 +02:00
|
|
|
console.log("Foo");
|
2020-10-03 13:37:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|