any-sync/common/metric/config.go
Sergey Cherepanov 17e37fb8fb
refactor configs
2022-12-27 16:50:20 +03:00

10 lines
119 B
Go

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