mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-07-26 13:32:46 +02:00
10 lines
147 B
Go
10 lines
147 B
Go
package messages
|
|
|
|
import "time"
|
|
|
|
type Message struct {
|
|
Key []byte
|
|
Content []byte
|
|
Properties map[string]string
|
|
Ts time.Time
|
|
}
|