open-consul/proto/pbcommon/common_oss.go

25 lines
485 B
Go
Raw Normal View History

//go:build !consulent
2020-10-21 20:08:33 +00:00
// +build !consulent
package pbcommon
2022-03-16 16:12:29 +00:00
import (
"github.com/hashicorp/consul/agent/structs"
)
2020-10-21 20:08:33 +00:00
var DefaultEnterpriseMeta = EnterpriseMeta{}
2022-03-16 16:12:29 +00:00
func NewEnterpriseMetaFromStructs(_ structs.EnterpriseMeta) *EnterpriseMeta {
return &EnterpriseMeta{}
}
func EnterpriseMetaToStructs(s *EnterpriseMeta, t *structs.EnterpriseMeta) {
if s == nil {
return
}
}
func EnterpriseMetaFromStructs(t *structs.EnterpriseMeta, s *EnterpriseMeta) {
if s == nil {
return
}
}