1
0
forked from x/icebergs
icebergs/core/chat/macos/clock.go
2023-09-25 18:45:17 +08:00

14 lines
227 B
Go

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