open-consul/agent/consul/enterprise_config_oss.go

14 lines
227 B
Go
Raw Normal View History

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
//go:build !consulent
2019-10-01 18:34:55 +00:00
// +build !consulent
package consul
type EnterpriseConfig struct{}
func DefaultEnterpriseConfig() *EnterpriseConfig {
return nil
}