any-sync/metric/config.go
2023-01-05 15:34:09 +03:00

10 lines
119 B
Go

package metric
type configSource interface {
GetMetric() Config
}
type Config struct {
Addr string `yaml:"addr"`
}