mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 20:39:34 +08:00
10 lines
97 B
Go
10 lines
97 B
Go
package application
|
|
|
|
type EventType int
|
|
|
|
const (
|
|
StartUp EventType = iota
|
|
ShutDown
|
|
DomReady
|
|
)
|