mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:52:29 +08:00
15 lines
267 B
Go
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),
|
|
}
|
|
}
|