Codebase list golang-github-gobuffalo-packr / f3ef9691-bec8-4f96-9738-cb03f6a65825/upstream builder / tmpl.go
f3ef9691-bec8-4f96-9738-cb03f6a65825/upstream

Tree @f3ef9691-bec8-4f96-9738-cb03f6a65825/upstream (Download .tar.gz)

tmpl.go @f3ef9691-bec8-4f96-9738-cb03f6a65825/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 }}
}
`