1
0
forked from x/icebergs
icebergs/core/chat/macos/clock.go
2023-09-21 01:33:02 +08:00

13 lines
250 B
Go

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