mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 12:53:08 +02:00
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
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);
|