@AppKu/StashKu

@AppKu/StashKu

v1.0.46

source

cli/processors/base-processor.js

import StashKu from '../../stashku.js';

export default class BaseProcessor {
    constructor(options) {

        /**
         * @type {*}
         */
        this.options = options || null;

        /**
         * @type {StashKu}
         */
        this.stash = null;
    }

    /**
     * Starts the worker to perform actions using the loaded options.
     */
    async start() {
        throw new Error('Not implemented.');
    }
}