mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-11-10 14:01:27 +03:00
20 lines
383 B
JavaScript
20 lines
383 B
JavaScript
/**
|
|
* @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;
|
|
} |