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