type Engine interface {
// Render defines a function that combines// the template with the step.
Render(template string, step *yaml.Step) (yaml.StepSlice, error)
}
Engine represents the interface for Vela integrating
with the different supported template engines.