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

13 lines
270 B
Go

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