aboutsummaryrefslogtreecommitdiff
path: root/weed/mq/messages/messages.go
blob: b3bd66f52b00c729514f69cef3d1c2011bfefa14 (plain)
1
2
3
4
5
6
7
8
9
10
package messages

import "time"

type Message struct {
	Key        []byte
	Content    []byte
	Properties map[string]string
	Ts         time.Time
}