Codebase list golang-github-gobuffalo-packr / eda25d87-8aff-4048-83a7-515a85741361/main builder / tmpl.go
eda25d87-8aff-4048-83a7-515a85741361/main

Tree @eda25d87-8aff-4048-83a7-515a85741361/main (Download .tar.gz)

tmpl.go @eda25d87-8aff-4048-83a7-515a85741361/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 }}
}
`