1// +build !consulent
2
3package pbservice
4
5import (
6	"github.com/hashicorp/consul/agent/structs"
7	"github.com/hashicorp/consul/proto/pbcommon"
8)
9
10func EnterpriseMetaToStructs(_ pbcommon.EnterpriseMeta) structs.EnterpriseMeta {
11	return structs.EnterpriseMeta{}
12}
13
14func NewEnterpriseMetaFromStructs(_ structs.EnterpriseMeta) pbcommon.EnterpriseMeta {
15	return pbcommon.EnterpriseMeta{}
16}
17