index.js 517 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
import Trnmod from "./Trnmod";
import Mtabut from './Mtabut'
import Setmod from './Setmod'
import Liaall from './Liaall/liaall.js'
import Settle from './Settle'
import Liaccv from './Liaccv'


export default class Publics {
    constructor() {
        this.data = {
            Trnmod: new Trnmod().data,
            Mtabut: new Mtabut().data,
            Setmod: new Setmod().data,
            Settle: new Settle().data,
            Liaall: new Liaall().data,
            Liaccv: new Liaccv().data,
        }
    }
}