1
0
vault-redux/vault/testing.go

16 lines
286 B
Go
Raw Normal View History

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