influxdb.go 335 B

1234567891011121314
  1. // Copyright 2019 github.com. All rights reserved.
  2. // Use of this source code is governed by gitbub.com.
  3. package parser
  4. import (
  5. "property-device/config"
  6. "git.getensh.com/common/gopkgs/influxdb"
  7. )
  8. func InfluxdbHandler(conf *config.Configure) {
  9. influxdb.Setup(conf.Influxdb.Addr, conf.Influxdb.Username, conf.Influxdb.Password)
  10. }