1
0
forked from x/icebergs
2023-09-25 18:45:17 +08:00

18 lines
394 B
Go

package macos
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/aaa"
"shylinux.com/x/icebergs/base/mdb"
)
const MENU = "menu"
func init() {
Index.MergeCommands(ice.Commands{
MENU: {Actions: ice.MergeActions(aaa.RoleAction(), CmdHashAction(), mdb.ClearOnExitHashAction())},
})
}
func MenuAppend(m *ice.Message, icon, index string) { install(m, MENU, icon, index) }