2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2021-05-17 20:01:32 +00:00
|
|
|
// +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
|
|
|
|
}
|