test.js 279 B

12345678910111213
  1. const callAnother = () => {
  2. console.log("Foo");
  3. };
  4. const main = async () => {
  5. callAnother();
  6. console.log("Received params", query, body, test);
  7. //console.log(await store.create("games", { name: "toto" }));
  8. console.log(await store.list("games", {}));
  9. return 42;
  10. };