Monorepo for Tangled
at f662f414f5f04ee467c17cc4f0bdd0d63b1f4f51 10 lines 245 B view raw
1package types 2 3// A nicer git tree representation. 4type NiceTree struct { 5 Name string `json:"name"` 6 Mode string `json:"mode"` 7 Size int64 `json:"size"` 8 IsFile bool `json:"is_file"` 9 IsSubtree bool `json:"is_subtree"` 10}