From c5e855527783936eee19d5a00b4ead643548c64d Mon Sep 17 00:00:00 2001 From: Christopher Zell Date: Mon, 27 May 2024 09:35:09 +0200 Subject: [PATCH] refactor: simplify go client instructions --- docs/apis-tools/go-client/go-get-started.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/apis-tools/go-client/go-get-started.md b/docs/apis-tools/go-client/go-get-started.md index 47ff1d18c9..c876e595ee 100644 --- a/docs/apis-tools/go-client/go-get-started.md +++ b/docs/apis-tools/go-client/go-get-started.md @@ -34,9 +34,15 @@ cd github.com/zb-user/zb-example go mod init zb-user/zb-example ``` -2. To use the Zeebe Go client library, add the following dependency to your `go.mod`: +2. To use the Zeebe Go client library, run the following: +```bash +go get github.com/camunda/zeebe/clients/go/v8@v8.5.1 ``` + +This adds the following dependency to your `go.mod`, it should look similar to this: + +```go module github.com/zb-user/zb-example go 1.21