forked from x/icebergs
18 lines
361 B
Go
18 lines
361 B
Go
package macos
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/mdb"
|
|
)
|
|
|
|
const MENU = "menu"
|
|
|
|
func init() {
|
|
Index.MergeCommands(ice.Commands{
|
|
MENU: {Actions: ice.MergeActions(mdb.ImportantHashAction(), CmdHashAction())},
|
|
})
|
|
}
|
|
func MenuAppend(m *ice.Message, name, index string, arg ...string) {
|
|
install(m, MENU, name, index, arg...)
|
|
}
|