1
0
vault-redux/vault/testing.go
2024-07-02 12:32:04 +03:00

16 lines
286 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package vault
import (
"net/http"
)
// This file contains a number of methods that are useful for unit
// tests within other packages.
type HandlerHandler interface {
Handler(*HandlerProperties) http.Handler
}