Skip to content

Commit 3dfb66a

Browse files
sterowneyedenhill
authored andcommitted
Update imports in README to use github imports instead
Using the examples verbatim from the README as a quick start, you run into this problem #510 Using github imports solves the issue, especially for new users quickly
1 parent 13ae115 commit 3dfb66a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ High-level balanced consumer
3939
```golang
4040
import (
4141
"fmt"
42-
"gopkg.in/confluentinc/confluent-kafka-go.v1/kafka"
42+
"github.com/confluentinc/confluent-kafka-go/kafka"
4343
)
4444

4545
func main() {
@@ -75,7 +75,7 @@ Producer
7575
```golang
7676
import (
7777
"fmt"
78-
"gopkg.in/confluentinc/confluent-kafka-go.v1/kafka"
78+
"github.com/confluentinc/confluent-kafka-go/kafka"
7979
)
8080

8181
func main() {

0 commit comments

Comments
 (0)