5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 17:52:29 +08:00
wails/v3/pkg/application/context_window_event.go
2023-02-12 07:58:14 +11:00

15 lines
267 B
Go

package application
var blankWindowEventContext = &WindowEventContext{}
type WindowEventContext struct {
// contains filtered or unexported fields
data map[string]any
}
func newWindowEventContext() *Context {
return &Context{
data: make(map[string]any),
}
}