blob: 2b335adc32c67f1685e55dd42af2657320f57f56 [file] [log] [blame]
Serge Bazanski31dd6162018-10-25 14:20:50 +02001package builder
2
3var tmpl = `// Code generated by github.com/gobuffalo/packr. DO NOT EDIT.
4
5package {{.Name}}
6
7import "github.com/gobuffalo/packr"
8
9// You can use the "packr clean" command to clean up this,
10// and any other packr generated files.
11func init() {
12 {{- range $box := .Boxes }}
13 {{- range .Files }}
14 packr.PackJSONBytes("{{$box.Name}}", "{{.Name}}", "{{.Contents}}")
15 {{- end }}
16 {{- end }}
17}
18`