mirror of
https://github.com/status-im/consul.git
synced 2025-01-18 09:41:32 +00:00
19 lines
327 B
Go
19 lines
327 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !consulent
|
|
|
|
package testing
|
|
|
|
import (
|
|
"github.com/hashicorp/consul/acl"
|
|
)
|
|
|
|
func FillEntMeta(entMeta *acl.EnterpriseMeta) {
|
|
// nothing to to in CE.
|
|
}
|
|
|
|
func FillAuthorizerContext(authzContext *acl.AuthorizerContext) {
|
|
// nothing to to in CE.
|
|
}
|