Codebase list golang-github-gobuffalo-packr / db57c64c-50b9-43f3-8c7c-879fceed9b0a/upstream builder / file.go
db57c64c-50b9-43f3-8c7c-879fceed9b0a/upstream

Tree @db57c64c-50b9-43f3-8c7c-879fceed9b0a/upstream (Download .tar.gz)

file.go @db57c64c-50b9-43f3-8c7c-879fceed9b0a/upstreamraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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