mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-04 03:59:59 +08:00

* Patch for file dialog on OSX * Update CONTRIBUTORS.md * 262 add wails shutdown method (#264) * feat: support close in bridge mode * feat: WailsShutdown callback Now handles proper shutdown through: * runtime.Window.Close() * Killing the main window * Ctrl-C * chore: version bump
10 lines
222 B
Go
10 lines
222 B
Go
package interfaces
|
|
|
|
// IPCManager is the event manager interface
|
|
type IPCManager interface {
|
|
BindRenderer(Renderer)
|
|
Dispatch(message string)
|
|
Start(eventManager EventManager, bindingManager BindingManager)
|
|
Shutdown()
|
|
}
|