Codebase list golang-github-gobuffalo-packr / 6c43969e-ca5f-426f-baae-1ac0c405048d/main builder / tmpl.go
6c43969e-ca5f-426f-baae-1ac0c405048d/main

Tree @6c43969e-ca5f-426f-baae-1ac0c405048d/main (Download .tar.gz)

tmpl.go @6c43969e-ca5f-426f-baae-1ac0c405048d/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 }}
}
`