github.com/argoproj/argo-cd/v2@v2.10.9/reposerver/repository/types.go (about)

     1  package repository
     2  
     3  // Chart see: https://helm.sh/docs/topics/charts/ for more details
     4  type Chart struct {
     5  	Description string       `yaml:"description,omitempty"`
     6  	Home        string       `yaml:"home,omitempty"`
     7  	Maintainers []Maintainer `yaml:"maintainers,omitempty"`
     8  }
     9  
    10  type Maintainer struct {
    11  	Name  string `yaml:"name,omitempty"`
    12  	Email string `yaml:"email,omitempty"`
    13  	Url   string `yaml:"url,omitempty"`
    14  }