nettools/net/ws.go
2024-11-12 09:10:09 +01:00

9 lines
97 B
Go

package net_utils
import "encoding/json"
type WSMsg struct {
Type int
Data json.RawMessage
}