Codebase list golang-github-gobuffalo-packr / a77a02a7-acb7-4661-b63e-63f13af9648b/upstream builder / tmpl.go
a77a02a7-acb7-4661-b63e-63f13af9648b/upstream

Tree @a77a02a7-acb7-4661-b63e-63f13af9648b/upstream (Download .tar.gz)

tmpl.go @a77a02a7-acb7-4661-b63e-63f13af9648b/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 }}
}
`