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 }