jormungandr-bite/src/queue/processors/http/index.ts

12 lines
295 B
TypeScript
Raw Normal View History

2018-04-04 10:07:07 -06:00
import deliver from './deliver';
2018-04-02 03:36:47 -06:00
import processInbox from './process-inbox';
2018-03-31 04:55:00 -06:00
import reportGitHubFailure from './report-github-failure';
const handlers = {
2018-04-04 10:07:07 -06:00
deliver,
2018-04-02 03:36:47 -06:00
processInbox,
2018-03-31 04:55:00 -06:00
reportGitHubFailure,
};
export default (job, done) => handlers[job.data.type](job).then(() => done(), done);