mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 22:55:48 +01:00
12 lines
203 B
Go
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)
|