aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/gobuffalo/packr/builder/tmpl.go
blob: ffe47c19b48496e10d9f2fcbab2c4b8654a17eb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 }}
}
`