Files
2023-12-04 22:38:28 -08:00

7 lines
159 B
Go

package textsplitter
// TextSplitter is the standard interface for splitting texts.
type TextSplitter interface {
SplitText(text string) ([]string, error)
}