import { Http,Util } from '@/utils';
import NextActionLogicBase from './next-action-logic-base';

/**
 * 执行下一步
 *
 * @export
 * @class NextActionLogic
 */
export default class NextActionLogic extends NextActionLogicBase{

    /**
     * Creates an instance of  NextActionLogic
     * 
     * @param {*} [opts={}]
     * @memberof  NextActionLogic
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}