Codebase list golang-github-gobuffalo-packr / ab639a91-f393-4d40-8263-05ec7762a18f/upstream builder / tmpl.go
ab639a91-f393-4d40-8263-05ec7762a18f/upstream

Tree @ab639a91-f393-4d40-8263-05ec7762a18f/upstream (Download .tar.gz)

tmpl.go @ab639a91-f393-4d40-8263-05ec7762a18f/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 }}
}
`