1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-27 01:48:27 +08:00
icebergs/core/chat/clock.go
2023-09-08 18:20:55 +08:00

16 lines
310 B
Go

package chat
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/ctx"
)
func init() {
const CLOCK = "clock"
Index.MergeCommands(ice.Commands{
CLOCK: {Name: "clock refresh", Icon: "usr/icons/Clock.png", Hand: func(m *ice.Message, arg ...string) {
ctx.DisplayLocal(m, "")
}},
})
}