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