diff options
| author | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-01 19:43:26 +0900 |
|---|---|---|
| committer | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-01 23:30:57 +0900 |
| commit | dc529711ced031155f53fa321159ec2830ef8b05 (patch) | |
| tree | 7a677cd11deab9a3026e7fc30f57556398901083 /src/processor/http/index.ts | |
| parent | Implement account public key endpoint (diff) | |
| download | sharkey-dc529711ced031155f53fa321159ec2830ef8b05.tar.gz sharkey-dc529711ced031155f53fa321159ec2830ef8b05.tar.bz2 sharkey-dc529711ced031155f53fa321159ec2830ef8b05.zip | |
Implement remote follow
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 da942ad2a1..a001cf11f7 100644 --- a/src/processor/http/index.ts +++ b/src/processor/http/index.ts @@ -1,7 +1,9 @@ +import follow from './follow'; import performActivityPub from './perform-activitypub'; import reportGitHubFailure from './report-github-failure'; const handlers = { + follow, performActivityPub, reportGitHubFailure, }; |