maestro/app/classes/state/Routine.js
2020-02-27 00:31:07 -06:00

12 lines
156 B
JavaScript

class Routine {
constructor(steps) {
this.steps = steps
}
apply_to(host) {
// TODO
}
}
module.exports = exports = Routine