| 8 | ) |
| 9 | |
| 10 | type QueueConsumer struct { |
| 11 | rb *RabbitMQ |
| 12 | connMgr *ConnectionManager |
| 13 | queueName string |
| 14 | } |
| 15 | |
| 16 | func NewQueueConsumer(rb *RabbitMQ, connMgr *ConnectionManager, queueName string) *QueueConsumer { |
| 17 | return &QueueConsumer{ |
nothing calls this directly
no outgoing calls
no test coverage detected