index.js 342 B

123456789101112
  1. const statistics = require('./statistics')
  2. const staffMember = require('./staff-member')
  3. const staffingAgency = require('./staffing-agency')
  4. const labor = require('./labor')
  5. const { controllers: C } = require('@alancnet/material-framework/server')
  6. module.exports = Object.assign(C, {
  7. statistics,
  8. staffMember,
  9. staffingAgency,
  10. labor
  11. })