1
0
forked from x/icebergs
icebergs/core/chat/macos/clock.go
2023-09-11 09:26:12 +08:00

16 lines
311 B
Go

package macos
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, "")
}},
})
}