blob: d439d49b6ed6baa1a20b34994171c54e9cd6eb38 [file] [log] [blame]
package builder
type file struct {
Name string
Contents string
}
func (f file) String() string {
return f.Name
}