2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2019-12-10 02:26:41 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
import "github.com/hashicorp/consul/agent/structs"
|
|
|
|
|
|
|
|
// EnterpriseMeta stub
|
|
|
|
type EnterpriseMeta struct{}
|
|
|
|
|
|
|
|
func (_ *EnterpriseMeta) ToStructs() structs.EnterpriseMeta {
|
2021-07-22 18:20:45 +00:00
|
|
|
return *structs.DefaultEnterpriseMetaInDefaultPartition()
|
2019-12-10 02:26:41 +00:00
|
|
|
}
|