Codebase list golang-github-gobuffalo-packr / 18b1cfa3-f412-4c81-ba77-622292e87804/main builder / file.go
18b1cfa3-f412-4c81-ba77-622292e87804/main

Tree @18b1cfa3-f412-4c81-ba77-622292e87804/main (Download .tar.gz)

file.go @18b1cfa3-f412-4c81-ba77-622292e87804/mainraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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