summaryrefslogtreecommitdiff
path: root/src/processor/http/index.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2018-04-03 02:12:13 +0900
committerGitHub <noreply@github.com>2018-04-03 02:12:13 +0900
commitb851402db1a33387de5d37be2e44bfa23680e56e (patch)
tree2cb76aee965c1bd3abc7f1a773e0af3f025e5aa1 /src/processor/http/index.ts
parentUse index (diff)
parentDeliver posts to remote followers (diff)
downloadmisskey-b851402db1a33387de5d37be2e44bfa23680e56e.tar.gz
misskey-b851402db1a33387de5d37be2e44bfa23680e56e.tar.bz2
misskey-b851402db1a33387de5d37be2e44bfa23680e56e.zip
Merge pull request #1376 from akihikodaki/misc
Misc
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,