Codebase list golang-github-gobuffalo-packr / 98d134f1-959f-41da-80dc-3fbe1ef547c2/upstream builder / tmpl.go
98d134f1-959f-41da-80dc-3fbe1ef547c2/upstream

Tree @98d134f1-959f-41da-80dc-3fbe1ef547c2/upstream (Download .tar.gz)

tmpl.go @98d134f1-959f-41da-80dc-3fbe1ef547c2/upstreamraw · history · blame

package builder

var tmpl = `// Code generated by github.com/gobuffalo/packr. DO NOT EDIT.

package {{.Name}}

import "github.com/gobuffalo/packr"

// You can use the "packr clean" command to clean up this,
// and any other packr generated files.
func init() {
	{{- range $box := .Boxes }}
	{{- range .Files }}
	_ = packr.PackJSONBytes("{{$box.Name}}", "{{.Name}}", "{{.Contents}}")
	{{- end }}
	{{- end }}
}
`