2022-02-16 17:56:38 +00:00
|
|
|
//go:build !consulent
|
|
|
|
// +build !consulent
|
|
|
|
|
|
|
|
package state
|
|
|
|
|
2022-04-05 21:10:06 +00:00
|
|
|
import "github.com/hashicorp/consul/acl"
|
2022-02-16 17:56:38 +00:00
|
|
|
|
|
|
|
func partitionedIndexEntryName(entry string, _ string) string {
|
|
|
|
return entry
|
|
|
|
}
|
|
|
|
|
2022-04-05 21:10:06 +00:00
|
|
|
func partitionedAndNamespacedIndexEntryName(entry string, _ *acl.EnterpriseMeta) string {
|
2022-02-16 17:56:38 +00:00
|
|
|
return entry
|
|
|
|
}
|