mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-17 16:10:09 +01:00
5 lines
113 B
Go
5 lines
113 B
Go
package frontend
|
|
|
|
type Dispatcher interface {
|
|
ProcessMessage(message string, sender Frontend) (string, error)
|
|
}
|