mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-08-03 05:46:06 +00:00
14 lines
370 B
TypeScript
14 lines
370 B
TypeScript
import follow from './follow';
|
|
import performActivityPub from './perform-activitypub';
|
|
import processInbox from './process-inbox';
|
|
import reportGitHubFailure from './report-github-failure';
|
|
|
|
const handlers = {
|
|
follow,
|
|
performActivityPub,
|
|
processInbox,
|
|
reportGitHubFailure,
|
|
};
|
|
|
|
export default (job, done) => handlers[job.data.type](job).then(() => done(), done);
|