Codebase list golang-github-gobuffalo-packr / 2a1f936e-920d-4165-8fc1-b806e46771a1/main builder / file.go
2a1f936e-920d-4165-8fc1-b806e46771a1/main

Tree @2a1f936e-920d-4165-8fc1-b806e46771a1/main (Download .tar.gz)

file.go @2a1f936e-920d-4165-8fc1-b806e46771a1/mainraw · history · blame

package builder

type file struct {
	Name     string
	Contents string
}

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