mirror of https://github.com/status-im/consul.git
26 lines
490 B
Go
26 lines
490 B
Go
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package pbcommongogo
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
)
|
|
|
|
var DefaultEnterpriseMeta = EnterpriseMeta{}
|
|
|
|
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
|
|
}
|
|
}
|