UNPKG

express-typeorm-rest-boilerplate

Version:

Boilerplate code to get started with building RESTful API Services

15 lines (11 loc) 353 B
import { Router } from 'express'; import auth from './auth'; import user from './user'; import company from './company'; import jobApplication from './jobApplication'; const routes = Router(); routes.use('/auth', auth); routes.use('/user', user); routes.use('/company', company); routes.use('/jobapplication', jobApplication); export default routes;