mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 22:13:36 +08:00
6 lines
113 B
Go
6 lines
113 B
Go
package frontend
|
|
|
|
type Dispatcher interface {
|
|
ProcessMessage(message string, sender Frontend) (string, error)
|
|
}
|