Codebase list golang-github-gobuffalo-packr / 94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main builder / file.go
94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main

Tree @94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main (Download .tar.gz)

file.go @94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/mainraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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