mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 22:33:46 +08:00
13 lines
203 B
Go
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)
|