10 lines
119 B
Go
10 lines
119 B
Go
package metric
|
|
|
|
type configSource interface {
|
|
GetMetric() Config
|
|
}
|
|
|
|
type Config struct {
|
|
Addr string `yaml:"addr"`
|
|
}
|