mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 15:48:07 -05:00
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"`
|
||
|
|
}
|