// Copyright 2019 github.com. All rights reserved. // Use of this source code is governed by gitbub.com. package parser import ( "smart-provincial/config" "github.com/jaryhe/gopkgs/influxdb" ) func InfluxdbHandler(conf *config.Configure) { influxdb.Setup(conf.Influxdb.Addr, conf.Influxdb.Username, conf.Influxdb.Password) }