mirror of
https://github.com/kopia/kopia.git
synced 2026-03-13 11:46:55 -04:00
11 lines
270 B
Go
11 lines
270 B
Go
package object
|
|
|
|
var indirectStreamType = "kopia:indirect"
|
|
|
|
// indirectObjectEntry represents an entry in indirect object stream.
|
|
type indirectObjectEntry struct {
|
|
Start int64 `json:"s,omitempty"`
|
|
Length int64 `json:"l,omitempty"`
|
|
Object ID `json:"o,omitempty"`
|
|
}
|