mirror of https://github.com/status-im/consul.git
14 lines
279 B
Go
14 lines
279 B
Go
|
//go:build !consulent
|
||
|
// +build !consulent
|
||
|
|
||
|
package catalog
|
||
|
|
||
|
import (
|
||
|
"github.com/hashicorp/consul/acl"
|
||
|
"github.com/hashicorp/consul/proto-public/pbresource"
|
||
|
)
|
||
|
|
||
|
func GetEnterpriseMetaFromResourceID(id *pbresource.ID) *acl.EnterpriseMeta {
|
||
|
return acl.DefaultEnterpriseMeta()
|
||
|
}
|