taskmanager.js 383 B

1234567891011121314151617181920
  1. /**
  2. * @description MeshCentral task manager
  3. * @author Ylian Saint-Hilaire
  4. * @copyright Intel Corporation 2018-2022
  5. * @license Apache-2.0
  6. * @version v0.0.1
  7. */
  8. /*jslint node: true */
  9. /*jshint node: true */
  10. /*jshint strict:false */
  11. /*jshint -W097 */
  12. /*jshint esversion: 6 */
  13. 'use strict';
  14. module.exports.createTaskManager = function (parent) {
  15. var obj = {};
  16. return obj;
  17. }