]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/controllers/api/server/index.ts
Rename Pod -> Server
[github/Chocobozzz/PeerTube.git] / server / controllers / api / server / index.ts
1 import * as express from 'express'
2 import { applicationFollowsRouter } from './follows'
3
4 const applicationRouter = express.Router()
5
6 applicationRouter.use('/', applicationFollowsRouter)
7
8 // ---------------------------------------------------------------------------
9
10 export {
11 applicationRouter
12 }