mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
6b7ccd06cf
* refactor to avoid future import cycles
8 lines
224 B
Go
8 lines
224 B
Go
package configfetcher
|
|
|
|
// ConfigFetcher is the interface the agent needs to expose
|
|
// for the xDS server to fetch agent config, currently only one field is fetched
|
|
type ConfigFetcher interface {
|
|
AdvertiseAddrLAN() string
|
|
}
|