add pause command

This commit is contained in:
Dave Horton
2020-02-03 20:51:50 -05:00
parent 348a820044
commit 2811e35c6b
6 changed files with 46 additions and 0 deletions

View File

@@ -30,6 +30,9 @@ function makeTask(logger, obj) {
case TaskName.Play:
const TaskPlay = require('./play');
return new TaskPlay(logger, data);
case TaskName.Pause:
const TaskPause = require('./pause');
return new TaskPause(logger, data);
case TaskName.Gather:
const TaskGather = require('./gather');
return new TaskGather(logger, data);