Sharkey/src/processor/http/index.ts

10 lines
269 B
TypeScript
Raw Normal View History

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