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
|
||
|
}
|