index.js 351 B

123456789101112131415161718
  1. import getConfig, * as config from './config'
  2. import * as category from './category'
  3. import * as product from './product'
  4. import * as comment from './comment'
  5. import * as attribute from './attribute'
  6. import * as trash from './trash'
  7. export default {
  8. getConfig,
  9. ...config,
  10. ...category,
  11. ...product,
  12. ...comment,
  13. ...attribute,
  14. ...trash,
  15. }