1
0
forked from x/icebergs
icebergs/core/chat/macos/caculator.go
2023-11-08 16:35:13 +08:00

14 lines
262 B
Go

package macos
import (
ice "shylinux.com/x/icebergs"
)
const CACULATOR = "caculator"
func init() {
Index.MergeCommands(ice.Commands{
CACULATOR: {Help: "计算器", Icon: "Caculator.png", Hand: func(m *ice.Message, arg ...string) { m.Display("") }},
})
}