forked from x/icebergs
14 lines
243 B
Go
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("") }},
|
|
})
|
|
}
|