mirror of
https://github.com/kopia/kopia.git
synced 2026-02-07 05:05:26 -05:00
12 lines
364 B
Go
12 lines
364 B
Go
package cas
|
|
|
|
// Format describes the format of object data.
|
|
type Format struct {
|
|
Version string `json:"version"`
|
|
Hash string `json:"hash"`
|
|
Encryption string `json:"encryption"`
|
|
Secret []byte `json:"secret,omitempty"`
|
|
MaxInlineBlobSize int `json:"maxInlineBlobSize"`
|
|
MaxBlobSize int `json:"maxBlobSize"`
|
|
}
|