mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-16 05:18:38 +00:00
Vincent Batts
faa80931af
when creating a manifest from, or validating, a stream like a tar archive, it requires thinking about some of the functions differently than walking a directory tree. This is the beginning of allowing for such features. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
9 lines
173 B
Go
9 lines
173 B
Go
package mtree
|
|
|
|
// dhCreator is used in when building a DirectoryHierarchy
|
|
type dhCreator struct {
|
|
DH *DirectoryHierarchy
|
|
curSet *Entry
|
|
curDir *Entry
|
|
curEnt *Entry
|
|
}
|