mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-27 15:45:53 -05:00
7 lines
110 B
JavaScript
7 lines
110 B
JavaScript
|
|
||
|
function MyTestModule()
|
||
|
{
|
||
|
this.getValue = function () { return 1245; };
|
||
|
}
|
||
|
|
||
|
module.exports = MyTestModule;
|