Files
kopia/internal/dir/entry.go
Jarek Kowalski e36d02c59b emit per-dir incomplete reason
store entire rootEntry on snapshot nmanifest
format 'snapshot list' consistently for both root and nested items
2018-05-19 22:00:14 -07:00

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