summaryrefslogtreecommitdiff
path: root/src/processor/http/index.ts
diff options
context:
space:
mode:
authorAkihiko Odaki <nekomanma@pixiv.co.jp>2018-04-02 20:16:13 +0900
committerAkihiko Odaki <nekomanma@pixiv.co.jp>2018-04-03 02:10:43 +0900
commit32c008d0087eae2a2b32f050fd2ae126a3e2c732 (patch)
tree492ee92b3c35af6a243c38e5a4fccfccdad63c7b /src/processor/http/index.ts
parentFix job processor interfaces (diff)
downloadsharkey-32c008d0087eae2a2b32f050fd2ae126a3e2c732.tar.gz
sharkey-32c008d0087eae2a2b32f050fd2ae126a3e2c732.tar.bz2
sharkey-32c008d0087eae2a2b32f050fd2ae126a3e2c732.zip
Deliver posts to remote followers
Diffstat (limited to 'src/processor/http/index.ts')
-rw-r--r--src/processor/http/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/processor/http/index.ts b/src/processor/http/index.ts
index b3161cb992..0301b472ce 100644
--- a/src/processor/http/index.ts
+++ b/src/processor/http/index.ts
@@ -1,9 +1,11 @@
+import deliverPost from './deliver-post';
import follow from './follow';
import performActivityPub from './perform-activitypub';
import processInbox from './process-inbox';
import reportGitHubFailure from './report-github-failure';
const handlers = {
+ deliverPost,
follow,
performActivityPub,
processInbox,