Codebase list golang-github-gobuffalo-packr / ab14c315-b36f-4cd9-bdbc-fe312647bc18/main v2 / packr_test.go
ab14c315-b36f-4cd9-bdbc-fe312647bc18/main

Tree @ab14c315-b36f-4cd9-bdbc-fe312647bc18/main (Download .tar.gz)

packr_test.go @ab14c315-b36f-4cd9-bdbc-fe312647bc18/mainraw · history · blame

package packr

import "github.com/gobuffalo/packr/v2/file"

func qfile(name string, body string) File {
	f, err := file.NewFile(name, []byte(body))
	if err != nil {
		panic(err)
	}
	return f
}