83bf7ab3ff
This should let freshly recompiled golangci-lint binaries using Go 1.17 pass 'make lint'
13 lines
258 B
Go
13 lines
258 B
Go
//go:build !consulent
|
|
// +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
|
|
}
|