(channel, message)
| 141 | redis_helper.execute_transaction(transaction_example) |
| 142 | |
| 143 | def message_handler(channel, message): |
| 144 | print(f"Received message from channel {channel}: {message}") |
| 145 | redis_helper.subscribe("notifications", message_handler) |
| 146 | |
| 147 | redis_helper.publish("notifications", "New message!") |
nothing calls this directly
no outgoing calls
no test coverage detected