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

12 lines
127 B
Go

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