UNPKG
nest-cli
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Unofficial command-line tool to control Nest devices
github.com/jasonmit/nest-cli
jasonmit/nest-cli
nest-cli
/
lib
/
tasks
/
-base.js
15 lines
(11 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
'use strict'
;
class
Task
{
constructor
(
options
) {
this
.
app
= options.
app
;
this
.
ui
= options.
ui
; }
run
(
) {
throw
new
Error
(
'Not implemented'
); } }
module
.
exports
=
Task
;