index.js 402 B

1234567891011121314151617181920
  1. 'use strict';
  2. import home from './home';
  3. import v1 from './v1'
  4. import v2 from './v2'
  5. import v4 from './v4'
  6. import ugc from './ugc'
  7. import shopping from './shopping'
  8. export default app => {
  9. app.get('/', (req, res, next) => {
  10. res.redirect('/home');
  11. });
  12. app.use('/home', home);
  13. app.use('/v1', v1);
  14. app.use('/v2', v2);
  15. app.use('/v4', v4);
  16. app.use('/ugc', ugc);
  17. app.use('/shopping', shopping);
  18. }