UNPKG

meshcentral

Version:

Web based remote computer management server

20 lines (17 loc) 396 B
/** * @description MeshCentral task manager * @author Ylian Saint-Hilaire * @copyright Intel Corporation 2018-2022 * @license Apache-2.0 * @version v0.0.1 */ /*jslint node: true */ /*jshint node: true */ /*jshint strict:false */ /*jshint -W097 */ /*jshint esversion: 6 */ 'use strict'; module.exports.createTaskManager = function (parent) { var obj = {}; return obj; }