Codebase list golang-github-gobuffalo-packr / 7e727204-725d-4abc-af4e-63bb6681d94a/upstream builder / file.go
7e727204-725d-4abc-af4e-63bb6681d94a/upstream

Tree @7e727204-725d-4abc-af4e-63bb6681d94a/upstream (Download .tar.gz)

file.go @7e727204-725d-4abc-af4e-63bb6681d94a/upstreamraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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