Hello, World!

This commit is contained in:
Maciej Pędzich
2022-09-11 19:54:16 +02:00
parent 0378b69a1a
commit a7cd7ae762
4 changed files with 5053 additions and 0 deletions

3
app.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = (app) => {
app.onAny((context) => console.log(JSON.stringify(context, null, 2)));
};