1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-07 17:50:26 +08:00
Files
jieba/dictionary.go
2015-03-24 16:54:02 +08:00

16 lines
152 B
Go

package jiebago
type Pair struct {
Word string
Flag string
}
type Token struct {
*Pair
Freq float64
}
type DictLoader interface {
Add(*Token)
}