1
0
forked from x/icebergs
icebergs/core/chat/macos/caculator.go
2023-09-12 08:08:38 +08:00

13 lines
280 B
Go

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