mirror of https://github.com/hashicorp/consul
18 lines
310 B
Go
18 lines
310 B
Go
|
// Copyright (c) HashiCorp, Inc.
|
||
|
// SPDX-License-Identifier: BUSL-1.1
|
||
|
|
||
|
//go:build !consulent
|
||
|
// +build !consulent
|
||
|
|
||
|
package resource
|
||
|
|
||
|
import "github.com/hashicorp/consul/acl"
|
||
|
|
||
|
func fillEntMeta(entMeta *acl.EnterpriseMeta) {
|
||
|
return
|
||
|
}
|
||
|
|
||
|
func fillAuthorizerContext(authzContext *acl.AuthorizerContext) {
|
||
|
return
|
||
|
}
|