8 lines
93 B
Go
8 lines
93 B
Go
package attribute
|
|
|
|
type String string
|
|
|
|
func (s String) String() string {
|
|
return string(s)
|
|
}
|