Files
kopia/vault/format.go
2016-06-11 20:38:03 -07:00

11 lines
311 B
Go

package vault
// Format describes the format of a Vault.
// Contents of this structure are serialized in plain text in the Vault storage.
type Format struct {
Version string `json:"version"`
UniqueID []byte `json:"uniqueID"`
Encryption string `json:"encryption"`
Checksum string `json:"checksum"`
}