github.com/replicatedhq/ship@v0.55.0/pkg/filetree/api.go (about)

     1  package filetree
     2  
     3  type Node struct {
     4  	Children    []Node `json:"children" yaml:"children"`
     5  	Name        string `json:"name" yaml:"name"`
     6  	Path        string `json:"path" yaml:"path"`
     7  	HasOverlay  bool   `json:"hasOverlay" yaml:"hasOverlay"`
     8  	IsSupported bool   `json:"isSupported" yaml:"isSupported"`
     9  	IsExcluded  bool   `json:"isExcluded" yaml:"isExcluded"`
    10  }