mirror of
https://shylinux.com/x/icebergs
synced 2025-04-25 17:18:05 +08:00
15 lines
326 B
Go
15 lines
326 B
Go
package chat
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/mdb"
|
|
)
|
|
|
|
const REWRITE = "rewrite"
|
|
|
|
func init() {
|
|
Index.MergeCommands(ice.Commands{
|
|
REWRITE: {Actions: ice.MergeActions(ice.Actions{}, mdb.HashAction(mdb.SHORT, "space,index", mdb.FIELD, "time,hash,space,index,to_space,to_index"))},
|
|
})
|
|
}
|