wabot
Version:
Whatsapp Bot Module for automate response and interact whit users
25 lines (18 loc) • 351 B
JavaScript
const ora = require('ora');
var step = {};
var spinner;
this.start = function (text) {
spinner = ora({
spinner: "monkey",
text: text
}).start();
}
this.update = function (text) {
spinner.text = text;
}
this.info = function (text) {
spinner.info(text);
}
this.stop = function (text) {
spinner.succeed(text);
}