1
0
forked from x/icebergs
icebergs/misc/alpha/cache.go
2022-08-16 10:41:05 +08:00

15 lines
289 B
Go

package alpha
import (
"shylinux.com/x/ice"
)
type cache struct {
ice.Hash
short string `data:"word"`
field string `data:"time,word,translation,definition"`
list string `name:"list word auto create prunes" help:"缓存"`
}
func init() { ice.Cmd("web.wiki.alpha.cache", cache{}) }