4 lines
104 B
JavaScript
4 lines
104 B
JavaScript
|
|
module.exports = (app) => {
|
||
|
|
app.onAny((context) => console.log(JSON.stringify(context, null, 2)));
|
||
|
|
};
|