Skip to content

Commit

Permalink
refactor: simplify go client instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Zelldon committed May 27, 2024
1 parent a43b177 commit c5e8555
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/apis-tools/go-client/go-get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c5e8555

Please sign in to comment.