UNPKG

ryuu

Version:

Domo App Dev Studio CLI, The main tool used to create, edit, and publish app designs to Domo

12 lines 352 B
import { Login } from '../util/login.js'; export default (program) => { program .command('logout') .description('logout of Domo') .option('-i, --instance <value>', 'Domo instance') .action(args => { const login = new Login(args.instance); login.logout(); }); }; //# sourceMappingURL=logout.js.map