ipld-eth-server/vendor/github.com/aristanetworks/goarista/influxlib/config.go
Rob Mulholand 560305f601 Update dependencies
- uses newer version of go-ethereum required for go1.11
2018-09-13 16:14:35 -05:00

21 lines
435 B
Go

// Copyright (c) 2018 Arista Networks, Inc.
// Use of this source code is governed by the Apache License 2.0
// that can be found in the COPYING file.
package influxlib
//Connection type.
const (
HTTP = "HTTP"
UDP = "UDP"
)
//InfluxConfig is a configuration struct for influxlib.
type InfluxConfig struct {
Hostname string
Port uint16
Protocol string
Database string
RetentionPolicy string
}