open-consul/proto/pbservice/convert_oss.go

18 lines
386 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/acl"
2022-03-23 16:10:03 +00:00
"github.com/hashicorp/consul/proto/pbcommon"
)
func EnterpriseMetaToStructs(_ *pbcommon.EnterpriseMeta) acl.EnterpriseMeta {
return acl.EnterpriseMeta{}
}
func NewEnterpriseMetaFromStructs(_ acl.EnterpriseMeta) *pbcommon.EnterpriseMeta {
2022-03-23 16:10:03 +00:00
return &pbcommon.EnterpriseMeta{}
}