1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-07 21:47:02 +09:00
any-sync/metric/config.go
2023-01-05 15:34:09 +03:00

9 lines
119 B
Go

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