UNPKG

nest-cli

Version:

Unofficial command-line tool to control Nest devices

15 lines (11 loc) 192 B
'use strict'; class Task { constructor(options) { this.app = options.app; this.ui = options.ui; } run() { throw new Error('Not implemented'); } } module.exports = Task;