2019-12-10 02:26:41 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
import "github.com/hashicorp/consul/agent/structs"
|
|
|
|
|
2020-04-17 20:27:39 +00:00
|
|
|
// EnterpriseMeta provides a stub for the corresponding struct in config_ent.go
|
|
|
|
type EnterpriseConfig struct{}
|
|
|
|
|
2019-12-10 02:26:41 +00:00
|
|
|
// EnterpriseMeta stub
|
|
|
|
type EnterpriseMeta struct{}
|
|
|
|
|
|
|
|
func (_ *EnterpriseMeta) ToStructs() structs.EnterpriseMeta {
|
|
|
|
return *structs.DefaultEnterpriseMeta()
|
|
|
|
}
|
|
|
|
|
|
|
|
type EnterpriseDNSConfig struct{}
|