master
js 20 lines 383 Bytes
Raw
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
9 /*jslint node: true */
10 /*jshint node: true */
11 /*jshint strict:false */
12 /*jshint -W097 */
13 /*jshint esversion: 6 */
14 'use strict';
15
16 module.exports.createTaskManager = function (parent) {
17 var obj = {};
18
19 return obj;
20 }