Skip to content

Commit

Permalink
fix(sdk/go): update missed v2 import paths
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Reese <adam@reese.io>
  • Loading branch information
adamreese committed Oct 29, 2023
1 parent 8d9a771 commit f7958d1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sdk/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/fermyon/spin/sdk/go
module github.com/fermyon/spin/sdk/go/v2

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion sdk/go/mysql/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"io"
"reflect"

spindb "github.com/fermyon/spin/sdk/go/internal/db"
spindb "github.com/fermyon/spin/sdk/go/v2/internal/db"
)

// Open returns a new connection to the database.
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/pg/pg.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"io"
"reflect"

spindb "github.com/fermyon/spin/sdk/go/internal/db"
spindb "github.com/fermyon/spin/sdk/go/v2/internal/db"
)

// Open returns a new connection to the database.
Expand Down
2 changes: 1 addition & 1 deletion sdk/go/sqlite/sqlite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"errors"
"io"

spindb "github.com/fermyon/spin/sdk/go/internal/db"
spindb "github.com/fermyon/spin/sdk/go/v2/internal/db"
)

// Open returns a new connection to the database.
Expand Down

0 comments on commit f7958d1

Please # to comment.