hatmill/attribute/string.go

8 lines
93 B
Go
Raw Normal View History

package attribute
type String string
func (s String) String() string {
return string(s)
}