You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
340 B
13 lines
340 B
package AXYBS
|
|
|
|
type ElasticsearchConfig struct {
|
|
Address []string `yaml:"address"`
|
|
Index string `yaml:"index"`
|
|
UserName string `yaml:"userName"`
|
|
Password string `yaml:"password"`
|
|
Time int `yaml:"time"`
|
|
URL string `yaml:"url"`
|
|
Query struct {
|
|
IotaDevice []string `yaml:"iota_device"`
|
|
} `yaml:"query"`
|
|
}
|
|
|