7 lines
168 B
Go
7 lines
168 B
Go
package config
|
|
|
|
type InFluxDbConf struct {
|
|
Host string `mapstructure:"host" json:"host" yaml:"host"`
|
|
Token string `mapstructure:"token" json:"token" yaml:"token"`
|
|
}
|