mirror of
https://github.com/ebosas/microservices.git
synced 2025-06-06 22:16:11 +02:00
9 lines
186 B
Go
9 lines
186 B
Go
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"`
|
|
}
|