Codebase list golang-github-gobuffalo-packr / 64db7a2a-14e2-4f0e-9a56-8311bab12275/upstream builder / tmpl.go
64db7a2a-14e2-4f0e-9a56-8311bab12275/upstream

Tree @64db7a2a-14e2-4f0e-9a56-8311bab12275/upstream (Download .tar.gz)

tmpl.go @64db7a2a-14e2-4f0e-9a56-8311bab12275/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 }}
}
`