Name returns the name of the chart.
()
| 80 | |
| 81 | // Name returns the name of the chart. |
| 82 | func (ch *Chart) Name() string { |
| 83 | if ch.Metadata == nil { |
| 84 | return "" |
| 85 | } |
| 86 | return ch.Metadata.Name |
| 87 | } |
| 88 | |
| 89 | // AddDependency determines if the chart is a subchart. |
| 90 | func (ch *Chart) AddDependency(charts ...*Chart) { |
no outgoing calls