remove unused gcp code for packr

This commit is contained in:
David Dollar 2020-01-28 11:21:13 -05:00
parent 8d5253cc58
commit 48548dd830
No known key found for this signature in database
GPG Key ID: AFAF263FB45B2124

View File

@ -7,15 +7,6 @@ import (
"github.com/convox/convox/pkg/common"
)
func (p *Provider) RenderTemplate(name string, params map[string]interface{}) ([]byte, error) {
data, err := p.templater.Render(fmt.Sprintf("%s.yml.tmpl", name), params)
if err != nil {
return nil, err
}
return common.FormatYAML(data)
}
func (p *Provider) templateHelpers() template.FuncMap {
return template.FuncMap{
"coalesce": func(ss ...string) string {