Files
kopia/cas/format.go
2016-03-24 17:58:25 -07:00

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"`
}