7 lines
112 B
Go
7 lines
112 B
Go
package config
|
|
|
|
type MetricsConfig struct {
|
|
Enabled bool `yaml:"enabled"`
|
|
Address string `yaml:"address"`
|
|
}
|