You've already forked microservices
mirror of
https://github.com/ebosas/microservices.git
synced 2025-06-12 22:17:26 +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"`
|
||
|
}
|