mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 18:10:48 +08:00
7 lines
120 B
Go
7 lines
120 B
Go
package frontend
|
|
|
|
type Dispatcher interface {
|
|
ProcessMessage(message string) error
|
|
SetCallbackHandler(func(string))
|
|
}
|