mirror of
https://github.com/kopia/kopia.git
synced 2026-01-28 16:23:04 -05:00
9 lines
227 B
Go
9 lines
227 B
Go
package object
|
|
|
|
// 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"`
|
|
}
|