Codebase list golang-github-gobuffalo-packr / db57c64c-50b9-43f3-8c7c-879fceed9b0a/main builder / tmpl.go
db57c64c-50b9-43f3-8c7c-879fceed9b0a/main

Tree @db57c64c-50b9-43f3-8c7c-879fceed9b0a/main (Download .tar.gz)

tmpl.go @db57c64c-50b9-43f3-8c7c-879fceed9b0a/mainraw · 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 }}
}
`