forked from x/icebergs
16 lines
331 B
Go
16 lines
331 B
Go
package macos
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/ctx"
|
|
)
|
|
|
|
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) {
|
|
ctx.DisplayLocal(m, "")
|
|
}},
|
|
})
|
|
}
|