open-vault/audit/formatter.go

18 lines
491 B
Go
Raw Normal View History

2015-04-13 21:12:03 +00:00
package audit
import (
"io"
"github.com/hashicorp/vault/logical"
)
// Formatter is an interface that is responsible for formating a
// request/response into some format. Formatters write their output
// to an io.Writer.
2015-04-22 05:42:37 +00:00
//
// It is recommended that you pass data through Hash prior to formatting it.
2015-04-13 21:12:03 +00:00
type Formatter interface {
FormatRequest(io.Writer, *logical.Auth, *logical.Request) error
FormatResponse(io.Writer, *logical.Auth, *logical.Request, *logical.Response, error) error
}