mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
* add ce changes and documentation for tidying cmpv2 nonce store * add build tag * fix test failures * fix backend test
17 lines
274 B
Go
17 lines
274 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package pki
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/hashicorp/vault/sdk/logical"
|
|
)
|
|
|
|
func (b *backend) doTidyCMPV2NonceStore(_ context.Context, _ logical.Storage) error {
|
|
return nil
|
|
}
|