13 lines
248 B
Go
13 lines
248 B
Go
|
// +build !consulent
|
||
|
|
||
|
package config
|
||
|
|
||
|
import "github.com/hashicorp/consul/agent/structs"
|
||
|
|
||
|
// EnterpriseMeta stub
|
||
|
type EnterpriseMeta struct{}
|
||
|
|
||
|
func (_ *EnterpriseMeta) ToStructs() structs.EnterpriseMeta {
|
||
|
return *structs.DefaultEnterpriseMeta()
|
||
|
}
|