13 lines
280 B
JavaScript
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;
|
|
};
|