You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
397 B
18 lines
397 B
const { arrayToObject } = require('../utils/arg-utils');
|
|
|
|
class GroupHelper {
|
|
constructor(options) {
|
|
this.args = arrayToObject(options);
|
|
this.opts = {
|
|
outputOptions: {},
|
|
options: {},
|
|
};
|
|
this.strategy = undefined;
|
|
}
|
|
|
|
run() {
|
|
throw new Error('You must implement the "run" function');
|
|
}
|
|
}
|
|
|
|
module.exports = GroupHelper;
|
|
|