13 lines
170 B
Go
13 lines
170 B
Go
|
package naive
|
||
|
|
||
|
type (
|
||
|
StringTextContent string
|
||
|
TextContent interface {
|
||
|
Value() string
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func (stc StringTextContent) Value() string {
|
||
|
return string(stc)
|
||
|
}
|