milvus/internal/util/tokenizerapi/token_stream.go
Jiquan Long 5ea2454fdf
feat: tantivy tokenizer binding (#35801)
fix: #35800

---------

Signed-off-by: longjiquan <jiquan.long@zilliz.com>
2024-09-01 17:13:03 +08:00

9 lines
153 B
Go

package tokenizerapi
//go:generate mockery --name=TokenStream --with-expecter
type TokenStream interface {
Advance() bool
Token() string
Destroy()
}