Skip to content
Snippets Groups Projects
main.go 361 B
Newer Older
Florent Aide's avatar
Florent Aide committed
package runner

type Runner struct {
	config *CmdConfig
Florent Aide's avatar
Florent Aide committed
}

// NewRunner ...
func NewRunner(cfg *CmdConfig) *Runner {
Florent Aide's avatar
Florent Aide committed
	return &Runner{
		config: cfg,
	}
}

// Build is in charge of applying commands based on the config data
func (r *Runner) Build() error {
	// create helm commands

	// create ytt chart commands

	// create ytt additional command
Florent Aide's avatar
Florent Aide committed
	return nil
}