Codebase list golang-github-gobuffalo-packr / de5e7b37-512d-4c4f-9df9-fc59296f94bc/upstream builder / tmpl.go
de5e7b37-512d-4c4f-9df9-fc59296f94bc/upstream

Tree @de5e7b37-512d-4c4f-9df9-fc59296f94bc/upstream (Download .tar.gz)

tmpl.go @de5e7b37-512d-4c4f-9df9-fc59296f94bc/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 }}
}
`