mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
12 lines
263 B
Go
12 lines
263 B
Go
|
|
package databus
|
||
|
|
|
||
|
|
// Message Data.
|
||
|
|
type Message struct {
|
||
|
|
Key string `json:"key"`
|
||
|
|
Value string `json:"value"`
|
||
|
|
Topic string `json:"topic"`
|
||
|
|
Partition int32 `json:"partition"`
|
||
|
|
Offset int64 `json:"offset"`
|
||
|
|
Timestamp int64 `json:"timestamp"`
|
||
|
|
}
|