1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 01:24:05 +08:00
icebergs/core/chat/macos/caculator.go
2023-09-25 18:45:17 +08:00

14 lines
243 B
Go

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