2021-11-16 18:04:01 +00:00
|
|
|
//go:build !consulent
|
2020-10-21 21:45:09 +00:00
|
|
|
// +build !consulent
|
|
|
|
|
2020-09-18 18:05:15 +00:00
|
|
|
package pbservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2022-03-22 20:30:00 +00:00
|
|
|
"github.com/hashicorp/consul/proto/pbcommongogo"
|
2020-09-18 18:05:15 +00:00
|
|
|
)
|
|
|
|
|
2022-03-22 20:30:00 +00:00
|
|
|
func EnterpriseMetaToStructs(_ pbcommongogo.EnterpriseMeta) structs.EnterpriseMeta {
|
2020-09-18 18:05:15 +00:00
|
|
|
return structs.EnterpriseMeta{}
|
|
|
|
}
|
|
|
|
|
2022-03-22 20:30:00 +00:00
|
|
|
func NewEnterpriseMetaFromStructs(_ structs.EnterpriseMeta) pbcommongogo.EnterpriseMeta {
|
|
|
|
return pbcommongogo.EnterpriseMeta{}
|
2020-09-18 18:05:15 +00:00
|
|
|
}
|