ryuu
Version:
Domo App Dev Studio CLI, The main tool used to create, edit, and publish app designs to Domo
14 lines • 449 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var login_1 = require("../util/login");
module.exports = function (program) {
program
.command('logout')
.description('logout of Domo')
.option('-i, --instance <value>', 'Domo instance')
.action(function (args) {
var login = new login_1.Login(args.instance);
login.logout();
});
};
//# sourceMappingURL=logout.js.map