UNPKG

athom-cli

Version:

Command-line interface for Homey Apps

16 lines (12 loc) 296 B
'use strict'; const Log = require('../..').Log; const AthomApi = require('../..').AthomApi; const colors = require('colors'); exports.desc = 'Log out the current user'; exports.handler = async yargs => { try { await AthomApi.logout(); } catch( err ) { Log(colors.red(err.message)); } }