2020-10-21 21:45:09 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
2020-09-18 18:05:15 +00:00
|
|
|
package pbservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
"github.com/hashicorp/consul/proto/pbcommon"
|
|
|
|
)
|
|
|
|
|
|
|
|
func EnterpriseMetaToStructs(_ pbcommon.EnterpriseMeta) structs.EnterpriseMeta {
|
|
|
|
return structs.EnterpriseMeta{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewEnterpriseMetaFromStructs(_ structs.EnterpriseMeta) pbcommon.EnterpriseMeta {
|
|
|
|
return pbcommon.EnterpriseMeta{}
|
|
|
|
}
|