1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/common/metric/config.go
Sergey Cherepanov 17e37fb8fb
refactor configs
2022-12-27 16:50:20 +03:00

9 lines
119 B
Go

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