UNPKG

bitprophet

Version:

Crypto trading platform for Binance that uses chat bots as its interface

11 lines (9 loc) 268 B
var vars = require(__dirname + "/../vars.js") module.exports = { run: function(args, next) { var response = ":coffee: System paused" vars.paused = !vars.paused if(vars.paused) next(null, response) else next(null, ":thumbsup: System resumed.") } }