mirror of https://github.com/status-im/consul.git
12 lines
293 B
Go
12 lines
293 B
Go
|
// +build !consulent
|
||
|
|
||
|
package autoconf
|
||
|
|
||
|
// AutoConfigEnterprise has no fields in OSS
|
||
|
type AutoConfigEnterprise struct{}
|
||
|
|
||
|
// newAutoConfigEnterprise initializes the enterprise AutoConfig struct
|
||
|
func newAutoConfigEnterprise(config Config) AutoConfigEnterprise {
|
||
|
return AutoConfigEnterprise{}
|
||
|
}
|