You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package model |
|
|
|
type Message struct { |
|
T string `json:"t"` // action 时间主题 |
|
Ms int64 `json:"ms"` // 毫秒时间戳 |
|
D []byte `json:"d"` // 消息数据 |
|
} |
|
|
|
// Identity 身份认证消息 |
|
type Identity struct { |
|
Token string `json:"t"` |
|
}
|
|
|