Codebase list golang-github-gobuffalo-packr / 200a6150-b4fa-410b-9070-06d60f66bc99/main builder / file.go
200a6150-b4fa-410b-9070-06d60f66bc99/main

Tree @200a6150-b4fa-410b-9070-06d60f66bc99/main (Download .tar.gz)

file.go @200a6150-b4fa-410b-9070-06d60f66bc99/mainraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

func (f file) String() string {
	return f.Name
}