1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 09:34:05 +08:00
icebergs/core/chat/macos/clock.go
2023-11-08 16:35:13 +08:00

14 lines
243 B
Go

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