11 lines
207 B
Go
11 lines
207 B
Go
// +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"`
|
|
}
|