mirror of
https://github.com/gookit/event
synced 2025-12-24 10:30:50 +08:00
13 lines
204 B
Go
13 lines
204 B
Go
package event
|
|
|
|
// There are some default priority constants
|
|
const (
|
|
Min = -300
|
|
Low = -200
|
|
BelowNormal = -100
|
|
Normal = 0
|
|
AboveNormal = 100
|
|
High = 200
|
|
Max = 300
|
|
)
|