samba/util/event/eventType.go
2025-06-04 09:51:39 +08:00

9 lines
86 B
Go

package event
type Type int
const (
EnterRoom Type = iota
LeaveRoom Type = iota
)