]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/controllers/api/server/index.ts
Fix video upload and videos list
[github/Chocobozzz/PeerTube.git] / server / controllers / api / server / index.ts
CommitLineData
51548b31
C
1import * as express from 'express'
2import { applicationFollowsRouter } from './follows'
3
4const applicationRouter = express.Router()
5
6applicationRouter.use('/', applicationFollowsRouter)
7
8// ---------------------------------------------------------------------------
9
10export {
11 applicationRouter
12}