Files
playlist-entry-validator/index.ts
2026-01-15 10:00:05 +01:00

9 lines
163 B
TypeScript

import { run } from 'probot';
import appFn from './appFn';
run(appFn).then((server) => {
process.on('SIGTERM', async () => {
await server.stop();
});
});