rework ws responses to user, send events to user via ws

This commit is contained in:
2026-04-12 13:18:54 +02:00
parent 9076a5c5c8
commit 63b585313a
9 changed files with 149 additions and 103 deletions
+11
View File
@@ -0,0 +1,11 @@
package WsEventType
type WsEventType uint8
const (
Authentication WsEventType = iota
DirectMessage
ConnectionCreated
ConnectionDeleted
ConnectionElevated
)