Codebase list golang-github-gobuffalo-packr / upstream/2.8.1+git20201110.1968755 builder / file.go
upstream/2.8.1+git20201110.1968755

Tree @upstream/2.8.1+git20201110.1968755 (Download .tar.gz)

file.go @upstream/2.8.1+git20201110.1968755raw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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