5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 22:33:46 +08:00
wails/v3/pkg/application/events.go
2023-01-18 21:42:49 +11:00

13 lines
203 B
Go

package application
var applicationEvents = make(chan uint)
type WindowEvent struct {
WindowID uint
EventID uint
}
var windowEvents = make(chan *WindowEvent)
var menuItemClicked = make(chan uint)