Rename Pod -> Server
[oweals/peertube.git] / server / controllers / activitypub / index.ts
1 import * as express from 'express'
2 import { activityPubClientRouter } from './client'
3 import { inboxRouter } from './inbox'
4
5 const activityPubRouter = express.Router()
6
7 activityPubRouter.use('/', inboxRouter)
8 activityPubRouter.use('/', activityPubClientRouter)
9
10 // ---------------------------------------------------------------------------
11
12 export {
13   activityPubRouter
14 }