index.js 161 B

12345678910
  1. 'use strict';
  2. import home from './home.js'
  3. export default app => {
  4. app.get('/', (req, res, next) => {
  5. res.redirect('/home');
  6. });
  7. app.use('/home', home);
  8. }