10 lines
195 B
Go
10 lines
195 B
Go
package model
|
|
|
|
//Msg for databus consume.
|
|
type Msg struct {
|
|
MID int64 `json:"mid"`
|
|
From int `json:"from"`
|
|
IsAuthor int `json:"is_author"`
|
|
TimeStamp int64 `json:"timestamp"`
|
|
}
|