Skip to content

Commit b43b4ba

Browse files
committed
Go: Add AMQP 1.0 RPC to the README
1 parent 46039a8 commit b43b4ba

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

go/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,7 @@ Code examples are executed via `go run`:
4545
go run rpc_server.go
4646
go run rpc_client.go 10
4747

48+
[AMQP 1.0 Direct Reply-To RPC](https://www.rabbitmq.com/docs/next/direct-reply-to)
49+
go run rpc_amqp10.go
50+
4851
To learn more, see [`rabbitmq/amqp091-go`](https://github.com/rabbitmq/amqp091-go).

go/go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ module github.com/rabbitmq/rabbitmq-tutorials
33
go 1.17
44

55
require github.com/rabbitmq/amqp091-go v1.9.0
6+
7+
require github.com/Azure/go-amqp v1.5.0 // indirect

go/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
github.com/Azure/go-amqp v1.5.0 h1:GRiQK1VhrNFbyx5VlmI6BsA1FCp27W5rb9kxOZScnTo=
2+
github.com/Azure/go-amqp v1.5.0/go.mod h1:vZAogwdrkbyK3Mla8m/CxSc/aKdnTZ4IbPxl51Y5WZE=
13
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
24
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
35
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=

0 commit comments

Comments
 (0)