mirror of https://github.com/status-im/consul.git
12 lines
236 B
Go
12 lines
236 B
Go
|
// +build !consulent
|
||
|
|
||
|
package autoconf
|
||
|
|
||
|
// EnterpriseConfig stub - only populated in Consul Enterprise
|
||
|
type EnterpriseConfig struct{}
|
||
|
|
||
|
// finalize is a noop for OSS
|
||
|
func (_ *EnterpriseConfig) validateAndFinalize() error {
|
||
|
return nil
|
||
|
}
|