UNPKG

athom-cli

Version:

Command-line interface for Homey Apps

15 lines (11 loc) 253 B
'use strict'; const Log = require('../..').Log; const AthomApi = require('../..').AthomApi; exports.desc = 'Unselect the active Homey'; exports.handler = async () => { try { await AthomApi.unselectActiveHomey(); } catch( err ) { Log(err); } }