chanevents: add event types

This was forgotten previously.
This commit is contained in:
bitromortac 2026-04-02 10:49:07 +02:00
parent 0af64175a9
commit e0467adbfc
No known key found for this signature in database
GPG key ID: 1965063FC13BEBE2

View file

@ -14,16 +14,16 @@ type EventType int16
const (
// EventTypeUnknown is the unknown event type.
EventTypeUnknown = 0
EventTypeUnknown EventType = 0
// EventTypeOnline is the online event type.
EventTypeOnline = 1
EventTypeOnline EventType = 1
// EventTypeOffline is the offline event type.
EventTypeOffline = 2
EventTypeOffline EventType = 2
// EventTypeUpdate is the balance update event type.
EventTypeUpdate = 3
EventTypeUpdate EventType = 3
)
// String returns the string representation of the event type.