mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-16 13:28:37 +00:00
Vincent Batts
455edf6d21
For the most part, all the keywords for a standard mtree spec now have a function to produce the contents for a creator. These are used in the "walk" function, and will be used next in the "check" logic. This is still a WIP, as the DirectoryHierarchy produced from the current Walk() is not all-together a valid document. Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
8 lines
125 B
Go
8 lines
125 B
Go
package mtree
|
|
|
|
type Result struct {
|
|
}
|
|
|
|
func Check(root string, dh *DirectoryHierarchy) (*Result, error) {
|
|
return nil, nil
|
|
}
|