import InfluxDB from './influxdb' import MongoDB from './mongodb' export default class Databases { protected influxdb: InfluxDB; protected mongodb: MongoDB; constructor(config: any) { this.influxdb = new InfluxDB(config); this.mongodb = new MongoDB(); } public get_influxdb() { return this.influxdb; } }