Files
playlist-entry-validator/index.ts

9 lines
163 B
TypeScript
Raw Normal View History

import { run } from 'probot';
import appFn from './appFn';
2026-01-15 10:00:05 +01:00
run(appFn).then((server) => {
process.on('SIGTERM', async () => {
await server.stop();
});
});