mirror of
https://github.com/kopia/kopia.git
synced 2026-03-14 12:16:46 -04:00
11 lines
311 B
Go
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"`
|
|
}
|