summaryrefslogtreecommitdiff
path: root/src/processor/http/index.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-02 18:41:02 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-02 18:41:02 +0900
commitcb5fe0d48f5a434bf699394cb79d623ec1259ef8 (patch)
treedf15572b8147873066b4dfb10de481e5580f73b0 /src/processor/http/index.ts
parentFix bug (diff)
parentMerge pull request #1371 from akihikodaki/misc (diff)
downloadmisskey-cb5fe0d48f5a434bf699394cb79d623ec1259ef8.tar.gz
misskey-cb5fe0d48f5a434bf699394cb79d623ec1259ef8.tar.bz2
misskey-cb5fe0d48f5a434bf699394cb79d623ec1259ef8.zip
Merge branch 'master' of https://github.com/syuilo/misskey
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 a001cf11f7..b3161cb992 100644
--- a/src/processor/http/index.ts
+++ b/src/processor/http/index.ts
@@ -1,10 +1,12 @@
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,
};