open-consul/proto/pbservice/convert_oss.go

18 lines
408 B
Go
Raw Normal View History

//go:build !consulent
2020-10-21 21:45:09 +00:00
// +build !consulent
package pbservice
import (
"github.com/hashicorp/consul/agent/structs"
2022-03-23 16:10:03 +00:00
"github.com/hashicorp/consul/proto/pbcommon"
)
2022-03-23 16:10:03 +00:00
func EnterpriseMetaToStructs(_ *pbcommon.EnterpriseMeta) structs.EnterpriseMeta {
return structs.EnterpriseMeta{}
}
2022-03-23 16:10:03 +00:00
func NewEnterpriseMetaFromStructs(_ structs.EnterpriseMeta) *pbcommon.EnterpriseMeta {
return &pbcommon.EnterpriseMeta{}
}