import { Http,Util } from '@/utils';
import DstConfigServiceBase from './dst-config-service-base';


/**
 * 配置服务对象
 *
 * @export
 * @class DstConfigService
 * @extends {DstConfigServiceBase}
 */
export default class DstConfigService extends DstConfigServiceBase {

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


}