mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 20:05:09 +00:00
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()
|
|
}
|