Codebase list golang-github-gobuffalo-packr / e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream builder / file.go
e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream

Tree @e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream (Download .tar.gz)

file.go @e77c2a01-53cf-4f01-8323-b8eab79363aa/upstreamraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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