personal-website/wde/contextmenu.go

11 lines
129 B
Go

package wde
type ContexMenuIsland struct {
Rows []ContexMenuRow
}
type ContexMenuRow struct {
Label string
Action string
}