wails/v3/pkg/application/events.go
2023-01-18 21:34:11 +11:00

12 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)