1
0
forked from x/icebergs
icebergs/core/code/sess.go
2022-01-16 09:35:09 +08:00

16 lines
324 B
Go

package code
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/mdb"
)
func init() {
Index.Merge(&ice.Context{Commands: map[string]*ice.Command{
"sess": {Name: "sess hash auto save load", Help: "会话", Action: mdb.HashAction(
mdb.FIELD, "time,hash,tabs,tool",
"action", "load",
)},
}})
}