1
0
mirror of https://github.com/ebosas/microservices.git synced 2025-06-06 22:16:11 +02:00

9 lines
186 B
Go
Raw Normal View History

2021-06-08 21:26:14 +03:00
package models
// Message is used to marshal/unmarshal Rabbit messages.
type Message struct {
Text string `json:"text"`
Source string `json:"source"`
Time int64 `json:"time"`
}