|
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !consulent
|
|
// +build !consulent
|
|
|
|
package auth
|
|
|
|
import "github.com/hashicorp/consul/agent/structs"
|
|
|
|
func (w *TokenWriter) enterpriseValidation(token, existing *structs.ACLToken) error {
|
|
return nil
|
|
}
|