mirror of
https://github.com/kopia/kopia.git
synced 2026-03-13 11:46:55 -04:00
store entire rootEntry on snapshot nmanifest format 'snapshot list' consistently for both root and nested items
14 lines
304 B
Go
14 lines
304 B
Go
package dir
|
|
|
|
import (
|
|
"github.com/kopia/kopia/fs"
|
|
"github.com/kopia/kopia/object"
|
|
)
|
|
|
|
// Entry represents a directory entry as stored in JSON stream.
|
|
type Entry struct {
|
|
fs.EntryMetadata
|
|
ObjectID object.ID `json:"obj,omitempty"`
|
|
DirSummary *fs.DirectorySummary `json:"summ,omitempty"`
|
|
}
|