blob: 011b971ed63493fd523aff6fde0fc8acf2a6864c (
plain) (
tree)
|
|
import * as express from 'express'
import { applicationFollowsRouter } from './follows'
const applicationRouter = express.Router()
applicationRouter.use('/', applicationFollowsRouter)
// ---------------------------------------------------------------------------
export {
applicationRouter
}
|