1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-23 02:58:22 +09:00
cherrypick/src/processor/http/index.ts

12 lines
310 B
TypeScript
Raw Normal View History

2018-04-01 19:43:26 +09:00
import follow from './follow';
2018-03-31 19:55:00 +09:00
import performActivityPub from './perform-activitypub';
import reportGitHubFailure from './report-github-failure';
const handlers = {
2018-04-01 19:43:26 +09:00
follow,
2018-03-31 19:55:00 +09:00
performActivityPub,
reportGitHubFailure,
};
export default (job, done) => handlers[job.data.type](job).then(() => done(), done);