23 lines
459 B
Go
23 lines
459 B
Go
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package pbcommon
|
|
|
|
import "github.com/hashicorp/consul/acl"
|
|
|
|
var DefaultEnterpriseMeta = &EnterpriseMeta{}
|
|
|
|
func NewEnterpriseMetaFromStructs(_ acl.EnterpriseMeta) *EnterpriseMeta {
|
|
return &EnterpriseMeta{}
|
|
}
|
|
func EnterpriseMetaToStructs(s *EnterpriseMeta, t *acl.EnterpriseMeta) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
}
|
|
func EnterpriseMetaFromStructs(t *acl.EnterpriseMeta, s *EnterpriseMeta) {
|
|
if s == nil {
|
|
return
|
|
}
|
|
}
|