1
0
forked from x/icebergs
2023-05-10 10:38:31 +08:00

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...)
}