Skip to content

Commit

Permalink
fix: use correct go module name
Browse files Browse the repository at this point in the history
  • Loading branch information
Zelldon committed May 27, 2024
1 parent c5e8555 commit 06dd80c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/apis-tools/go-client/go-get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ First, we need a new Go project. To do this, complete the following steps:

1. Create a new project using your IDE, or create a new Go module with the following command:

```
```bash
mkdir github.com/zb-user/zb-example
cd github.com/zb-user/zb-example
go mod init zb-user/zb-example
Expand All @@ -47,7 +47,7 @@ module github.com/zb-user/zb-example

go 1.21

require github.com/camunda/camunda/clients/go/v8@v8.5.0
require github.com/camunda/zeebe/clients/go/v8@v8.5.1
```

3. Set the connection settings and client credentials as environment variables in your terminal:
Expand All @@ -71,8 +71,8 @@ package main
import (
"context"
"fmt"
"github.com/camunda/camunda/clients/go/v8/pkg/zbc"
"github.com/camunda/camunda/clients/go/v8/pkg/pb"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/pb"
"os"
)

Expand Down Expand Up @@ -297,9 +297,9 @@ package main
import (
"context"
"fmt"
"github.com/camunda/camunda/clients/go/v8/pkg/entities"
"github.com/camunda/camunda/clients/go/v8/pkg/worker"
"github.com/camunda/camunda/clients/go/v8/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/entities"
"github.com/camunda/zeebe/clients/go/v8/pkg/worker"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"log"
"os"
)
Expand Down Expand Up @@ -413,9 +413,9 @@ package main
import (
"context"
"fmt"
"github.com/camunda/camunda/clients/go/v8/pkg/entities"
"github.com/camunda/camunda/clients/go/v8/pkg/worker"
"github.com/camunda/camunda/clients/go/v8/pkg/zbc"
"github.com/camunda/zeebe/clients/go/v8/pkg/entities"
"github.com/camunda/zeebe/clients/go/v8/pkg/worker"
"github.com/camunda/zeebe/clients/go/v8/pkg/zbc"
"log"
"os"
)
Expand Down

0 comments on commit 06dd80c

Please sign in to comment.