open-vault/physical/physical_util.go

11 lines
207 B
Go
Raw Normal View History

2018-09-18 03:03:00 +00:00
// +build !enterprise
package physical
// Entry is used to represent data stored by the physical backend
type Entry struct {
Key string
Value []byte
SealWrap bool `json:"seal_wrap,omitempty"`
}