index.js 216 Bytes
Newer Older
zhengxiaokui committed
1 2 3 4 5 6 7 8 9 10
import Ditp from './Ditp'
import Didgrp from './Didgrp'
export default class Dids {
    constructor() {
        this.data = {
            Didgrp: new Didgrp().data,
            Ditp: new Ditp().data
        }
    }
}