1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-05 00:32:51 +08:00
Files
jieba/dictionary.go

16 lines
180 B
Go

package jiebago
type Entry struct {
Word string
Flag string
Freq float64
}
type DictLoader interface {
AddEntry(Entry)
}
type Cacher interface {
CacheNameFormat() string
}