mirror of
https://github.com/kopia/kopia.git
synced 2026-03-15 04:38:56 -04:00
14 lines
301 B
Go
14 lines
301 B
Go
package dir
|
|
|
|
import (
|
|
"github.com/kopia/kopia/fs"
|
|
"github.com/kopia/kopia/repo"
|
|
)
|
|
|
|
// Entry represents a directory entry as stored in JSON stream.
|
|
type Entry struct {
|
|
fs.EntryMetadata
|
|
ObjectID repo.ObjectID `json:"obj,omitempty"`
|
|
BundledChildren []*Entry `json:"bundled,omitempty"`
|
|
}
|