diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-04-03 02:12:13 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-03 02:12:13 +0900 |
| commit | b851402db1a33387de5d37be2e44bfa23680e56e (patch) | |
| tree | 2cb76aee965c1bd3abc7f1a773e0af3f025e5aa1 /src/processor/http/index.ts | |
| parent | Use index (diff) | |
| parent | Deliver posts to remote followers (diff) | |
| download | misskey-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.ts | 2 |
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, |