1ea85c56d7
* add noop endpoint with testonly build flag * add tests for endpoint * cleanup * fix test name * add changelog * pr fixes
13 lines
238 B
Go
13 lines
238 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//go:build !testonly
|
|
|
|
package vault
|
|
|
|
import (
|
|
"github.com/hashicorp/vault/sdk/framework"
|
|
)
|
|
|
|
func (b *SystemBackend) activityWritePath() *framework.Path { return nil }
|