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