mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-07 21:47:02 +09:00
9 lines
119 B
Go
9 lines
119 B
Go
package metric
|
|
|
|
type configSource interface {
|
|
GetMetric() Config
|
|
}
|
|
|
|
type Config struct {
|
|
Addr string `yaml:"addr"`
|
|
}
|