10 lines
97 B
Go
10 lines
97 B
Go
package application
|
|
|
|
type EventType int
|
|
|
|
const (
|
|
StartUp EventType = iota
|
|
ShutDown
|
|
DomReady
|
|
)
|