Codebase list golang-github-gobuffalo-packr / 4b092d9a-1e1c-4714-89c2-29136e93501d/main builder / file.go
4b092d9a-1e1c-4714-89c2-29136e93501d/main

Tree @4b092d9a-1e1c-4714-89c2-29136e93501d/main (Download .tar.gz)

file.go @4b092d9a-1e1c-4714-89c2-29136e93501d/mainraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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