Documentation ¶ Index ¶ type Input type Output type Renderer Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Input ¶ type Input interface{} Input holds input to the renderer type Output ¶ type Output interface { // TODO Consider using streams (io.Writer or io.Reader) in the API instead of buffers. FileContent(filename string) (string, error) ListFiles() ([]string, error) } Output holds rendered templates files type Renderer ¶ type Renderer interface { // TODO Consider using streams (io.Writer or io.Reader) in the API instead of buffers. Render(input Input) (Output, error) } Renderer is an interface for rendering templates from path, name, namespace and values. Source Files ¶ View all Source files renderer.go Directories ¶ Show internal Expand all Path Synopsis factory gotemplate helm Click to show internal directories. Click to hide internal directories.