mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 07:05:50 +01:00
7 lines
182 B
Go
7 lines
182 B
Go
package messages
|
|
|
|
// CallData represents a call to a Go function/method
|
|
type CallData struct {
|
|
BindingName string `json:"bindingName"`
|
|
Data string `json:"data,omitempty"`
|
|
}
|