mirror of
https://github.com/fumiama/jieba.git
synced 2026-06-06 01:00:37 +08:00
12 lines
127 B
Go
12 lines
127 B
Go
package jiebago
|
|
|
|
type Entry struct {
|
|
Word string
|
|
Flag string
|
|
Freq float64
|
|
}
|
|
|
|
type DictLoader interface {
|
|
AddEntry(Entry)
|
|
}
|