9 lines
97 B
Go
9 lines
97 B
Go
package net_utils
|
|
|
|
import "encoding/json"
|
|
|
|
type WSMsg struct {
|
|
Type int
|
|
Data json.RawMessage
|
|
}
|