Codebase list golang-github-gobuffalo-packr / e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream builder / tmpl.go
e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream

Tree @e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream (Download .tar.gz)

tmpl.go @e77c2a01-53cf-4f01-8323-b8eab79363aa/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 }}
}
`