naive/textcontent.go

13 lines
170 B
Go
Raw Permalink Normal View History

2025-01-20 07:34:39 +01:00
package naive
type (
StringTextContent string
TextContent interface {
Value() string
}
)
func (stc StringTextContent) Value() string {
return string(stc)
}