Codebase list golang-github-gobuffalo-packr / 87c69ca5-e8bf-4e06-b16e-230a056002e4/upstream builder / tmpl.go
87c69ca5-e8bf-4e06-b16e-230a056002e4/upstream

Tree @87c69ca5-e8bf-4e06-b16e-230a056002e4/upstream (Download .tar.gz)

tmpl.go @87c69ca5-e8bf-4e06-b16e-230a056002e4/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 }}
}
`