1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00

introduced software updates checks (#17)

* check for update feature + converting to standard npm versioning
This commit is contained in:
Massimo Candela
2019-09-19 22:36:12 +02:00
committed by GitHub
parent 8566253c79
commit 1feef2a4bc
18 changed files with 214 additions and 37 deletions

View File

@@ -79,6 +79,6 @@ switch(params._[0]) {
break;
default: // Run monitor
const Monitor = require("./monitor").default;
module.exports = new Monitor(params.c).pubSub;
const Worker = require("./worker").default;
module.exports = new Worker(params.c).pubSub;
}