Codebase list golang-github-gobuffalo-packr / 26ec37e3-c9b1-4045-a350-a767ed6a285c/upstream builder / tmpl.go
26ec37e3-c9b1-4045-a350-a767ed6a285c/upstream

Tree @26ec37e3-c9b1-4045-a350-a767ed6a285c/upstream (Download .tar.gz)

tmpl.go @26ec37e3-c9b1-4045-a350-a767ed6a285c/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 }}
}
`