Skip to content

Commit a70c5e5

Browse files
authored
Update import paths to github.com/coder/sqlc (#2)
1 parent b807fe9 commit a70c5e5

182 files changed

Lines changed: 439 additions & 439 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cmd/sqlc-gen-json/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"io"
88
"os"
99

10-
"github.com/sqlc-dev/sqlc/internal/codegen/json"
11-
"github.com/sqlc-dev/sqlc/internal/plugin"
10+
"github.com/coder/sqlc/internal/codegen/json"
11+
"github.com/coder/sqlc/internal/plugin"
1212
"google.golang.org/protobuf/proto"
1313
)
1414

cmd/sqlc/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"github.com/sqlc-dev/sqlc/internal/cmd"
6+
"github.com/coder/sqlc/internal/cmd"
77
)
88

99
func main() {

examples/authors/mysql/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
_ "github.com/go-sql-driver/mysql"
1111

12-
"github.com/sqlc-dev/sqlc/internal/sqltest/local"
12+
"github.com/coder/sqlc/internal/sqltest/local"
1313
)
1414

1515
func TestAuthors(t *testing.T) {

examples/authors/postgresql/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/jackc/pgx/v5"
1010
"github.com/jackc/pgx/v5/pgtype"
1111

12-
"github.com/sqlc-dev/sqlc/internal/sqltest/local"
12+
"github.com/coder/sqlc/internal/sqltest/local"
1313
)
1414

1515
func TestAuthors(t *testing.T) {

examples/authors/sqlite/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"database/sql"
88
"testing"
99

10-
"github.com/sqlc-dev/sqlc/internal/sqltest"
10+
"github.com/coder/sqlc/internal/sqltest"
1111
)
1212

1313
func TestAuthors(t *testing.T) {

examples/batch/postgresql/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/jackc/pgx/v5"
1111
"github.com/jackc/pgx/v5/pgtype"
1212

13-
"github.com/sqlc-dev/sqlc/internal/sqltest/local"
13+
"github.com/coder/sqlc/internal/sqltest/local"
1414
)
1515

1616
func TestBatchBooks(t *testing.T) {

examples/booktest/mysql/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
_ "github.com/go-sql-driver/mysql"
1212

13-
"github.com/sqlc-dev/sqlc/internal/sqltest/local"
13+
"github.com/coder/sqlc/internal/sqltest/local"
1414
)
1515

1616
func TestBooks(t *testing.T) {

examples/booktest/postgresql/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/jackc/pgx/v5"
1111
"github.com/jackc/pgx/v5/pgtype"
1212

13-
"github.com/sqlc-dev/sqlc/internal/sqltest/local"
13+
"github.com/coder/sqlc/internal/sqltest/local"
1414
)
1515

1616
func TestBooks(t *testing.T) {

examples/booktest/sqlite/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/sqlc-dev/sqlc/internal/sqltest"
10+
"github.com/coder/sqlc/internal/sqltest"
1111
)
1212

1313
// TODO: Enum is not yet supported

examples/ondeck/mysql/db_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
_ "github.com/go-sql-driver/mysql"
1212
"github.com/google/go-cmp/cmp"
1313

14-
"github.com/sqlc-dev/sqlc/internal/sqltest/local"
14+
"github.com/coder/sqlc/internal/sqltest/local"
1515
)
1616

1717
func join(vals ...string) sql.NullString {

0 commit comments

Comments
 (0)