Version 0.9.56

Ylian Saint-Hilaire committed Dec 2, 2021 at 06:27 UTC e4414211310ba5f2b22ab0f934f90f2f226862b9
2 files changed +9 -1
letsencrypt.js
+1 -1
@@ -1,5 +1,5 @@
1 /**
2 -* @description MeshCentral letsEncrypt module, uses GreenLock to do all the work.
2 +* @description MeshCentral letsEncrypt module, uses ACME-Client to do all the work.
3 * @author Ylian Saint-Hilaire
4 * @copyright Intel Corporation 2018-2021
5 * @license Apache-2.0
meshbot.js
+8
@@ -1,5 +1,13 @@
1 #!/usr/bin/env node
2
3 +/**
4 +* @description MeshCentral bot sample code
5 +* @author Ylian Saint-Hilaire
6 +* @copyright Intel Corporation 2018-2021
7 +* @license Apache-2.0
8 +* @version v0.0.1
9 +*/
10 +
11 // Make sure we have the dependency modules
12 try { require('minimist'); } catch (ex) { console.log('Missing module "minimist", type "npm install minimist" to install it.'); return; }
13 try { require('ws'); } catch (ex) { console.log('Missing module "ws", type "npm install ws" to install it.'); return; }