File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,32 +15,32 @@ To run this code you need [Go RabbitMQ client](https://github.com/streadway/amqp
1515
1616Code examples are executed via ` go run ` :
1717
18- [ Tutorial one: "Hello World!"] ( http://www.rabbitmq.com/tutorial-one-python .html ) :
18+ [ Tutorial one: "Hello World!"] ( http://www.rabbitmq.com/tutorial-one-go .html ) :
1919
2020 go run send.go
2121 go run receive.go
2222
23- [ Tutorial two: Work Queues] ( http://www.rabbitmq.com/tutorial-two-python .html ) :
23+ [ Tutorial two: Work Queues] ( http://www.rabbitmq.com/tutorial-two-go .html ) :
2424
2525 go run new_task.go hello world
2626 go run worker.go
2727
28- [ Tutorial three: Publish/Subscribe] ( http://www.rabbitmq.com/tutorial-three-python .html )
28+ [ Tutorial three: Publish/Subscribe] ( http://www.rabbitmq.com/tutorial-three-go .html )
2929
3030 go run receive_logs.go
3131 go run emit_log.go hello world
3232
33- [ Tutorial four: Routing] ( http://www.rabbitmq.com/tutorial-four-python .html )
33+ [ Tutorial four: Routing] ( http://www.rabbitmq.com/tutorial-four-go .html )
3434
3535 go run receive_logs_direct.go info warn
3636 go run emit_log_direct.go warn "a warning"
3737
38- [ Tutorial five: Topics] ( http://www.rabbitmq.com/tutorial-five-python .html )
38+ [ Tutorial five: Topics] ( http://www.rabbitmq.com/tutorial-five-go .html )
3939
4040 go run receive_logs_topic.go "kern.*" "*.critical"
4141 go run emit_log_topic.go kern.critical "A critical kernel error"
4242
43- [ Tutorial six: RPC] ( http://www.rabbitmq.com/tutorial-six-python .html )
43+ [ Tutorial six: RPC] ( http://www.rabbitmq.com/tutorial-six-go .html )
4444
4545 go run rpc_server.go
4646 go run rpc_client.go 10
You can’t perform that action at this time.
0 commit comments