maestro/app/classes/state/Routine.js

12 lines
156 B
JavaScript
Raw Normal View History

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