Skip to content

Commit

Permalink
Merge pull request #239 from mooseburgr/fix-example-imports
Browse files Browse the repository at this point in the history
Fix examples' imports to use goavro/v2
  • Loading branch information
xmcqueen committed Jan 20, 2022
2 parents f96194c + ddfd5c3 commit ec5a08b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/165/main.go
Expand Up @@ -37,7 +37,7 @@ package main
import (
"os"

"github.com/linkedin/goavro"
"github.com/linkedin/goavro/v2"
)

const loginEventAvroSchema = `{"type": "record", "name": "LoginEvent", "fields": [{"name": "Username", "type": "string"}]}`
Expand Down
2 changes: 1 addition & 1 deletion examples/soe/main.go
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/linkedin/goavro"
"github.com/linkedin/goavro/v2"
)

func main() {
Expand Down

0 comments on commit ec5a08b

Please sign in to comment.