8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
import { ApplicationFunction } from 'probot';
|
|
|
|
const appFn: ApplicationFunction = (app) => {
|
|
app.onAny((context) => console.log(JSON.stringify(context, null, 2)));
|
|
};
|
|
|
|
export = appFn;
|