blob: c5bec64487758a9a2adaff78647148fbe077b42a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import * as express from 'express'
import { activityPubClientRouter } from './client'
import { inboxRouter } from './inbox'
const activityPubRouter = express.Router()
activityPubRouter.use('/', inboxRouter)
activityPubRouter.use('/', activityPubClientRouter)
// ---------------------------------------------------------------------------
export {
activityPubRouter
}
|