playlist-entry-validator/index.ts

8 lines
186 B
TypeScript
Raw Normal View History

2022-09-12 12:45:19 +02:00
import { ApplicationFunction } from 'probot';
const appFn: ApplicationFunction = (app) => {
app.onAny((context) => console.log(JSON.stringify(context, null, 2)));
};
export = appFn;