mirror of https://github.com/hashicorp/consul
20 lines
348 B
Go
20 lines
348 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !consulent
|
|
// +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.
|
|
}
|