import XHTool from './util/tool/Index'
import XHDate from './util/tool/XHDate'

export default XHTool

export { XHDate }

class Index {
    tool: XHTool = new XHTool()

    constructor() {
        console.log(this.tool.date.GetDateTime())
        console.log(this.tool.date.GetFullDateTime())
    }
}

const app = new Index()
