5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 18:10:48 +08:00
wails/v2/internal/frontend/dispatcher.go
2021-08-13 23:44:24 +10:00

7 lines
120 B
Go

package frontend
type Dispatcher interface {
ProcessMessage(message string) error
SetCallbackHandler(func(string))
}