mirror of
https://github.com/helm/helm.git
synced 2026-08-13 17:07:28 +00:00
13 lines
341 B
Go
13 lines
341 B
Go
package chart
|
|
|
|
// File represents a file as a name/value pair.
|
|
//
|
|
// By convention, name is a relative path within the scope of the chart's
|
|
// base directory.
|
|
type File struct {
|
|
// Name is the path-like name of the template.
|
|
Name string `json:"name,omitempty"`
|
|
// Data is the template as byte data.
|
|
Data []byte `json:"data,omitempty"`
|
|
}
|