AmqpMessage is the message structure for AMQP.
| 2 | |
| 3 | // AmqpMessage is the message structure for AMQP. |
| 4 | type AmqpMessage struct { |
| 5 | OwnerID string `json:"ownerId"` |
| 6 | Data []byte `json:"data"` |
| 7 | } |
| 8 | |
| 9 | // Routing keys - using consistent event/command patterns |
| 10 | const ( |
nothing calls this directly
no outgoing calls
no test coverage detected