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