Codebase list golang-github-gobuffalo-packr / d40fecd8-db21-4a14-8722-81c49b4f03fb/upstream builder / tmpl.go
d40fecd8-db21-4a14-8722-81c49b4f03fb/upstream

Tree @d40fecd8-db21-4a14-8722-81c49b4f03fb/upstream (Download .tar.gz)

tmpl.go @d40fecd8-db21-4a14-8722-81c49b4f03fb/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 }}
}
`