Files

14 lines
179 B
Go
Raw Permalink Normal View History

2020-12-18 15:50:25 +11:00
package menu
type ContextMenu struct {
ID string
Menu *Menu
}
func NewContextMenu(ID string, menu *Menu) *ContextMenu {
return &ContextMenu{
ID: ID,
Menu: menu,
}
}