mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 21:51:09 +02:00
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"`
|
|
}
|