aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/controllers/api/application/index.ts
blob: 011b971ed63493fd523aff6fde0fc8acf2a6864c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import * as express from 'express'
import { applicationFollowsRouter } from './follows'

const applicationRouter = express.Router()

applicationRouter.use('/', applicationFollowsRouter)

// ---------------------------------------------------------------------------

export {
  applicationRouter
}