10000 chore!: Rename kyleconroy/sqlc to sqlc-dev/sqlc (#2523) · sqlc-dev/sqlc@d361c5d · GitHub
[go: up one dir, main page]

Skip to content

Commit d361c5d

Browse files
authored
chore!: Rename kyleconroy/sqlc to sqlc-dev/sqlc (#2523)
* chore!: Rename kyleconroy/sqlc to sqlc-dev/sqlc * chore: Update import paths en masse * chore(endtoend): Update testdata with new import path * build(endtoend): Clean up testdata go.mod
1 parent 03af558 commit d361c5d

File tree

163 files changed

+343
-345
lines changed

Some content is hidden

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

163 files changed

+343
-345
lines changed

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/kyleconroy/sqlc/internal/codegen/json"
11-
"github.com/kyleconroy/sqlc/internal/plugin"
10+
"github.com/sqlc-dev/sqlc/internal/codegen/json"
11+
"github.com/sqlc-dev/sqlc/internal/plugin"
1212
)
1313

1414
func main() {

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/kyleconroy/sqlc/internal/cmd"
6+
"github.com/sqlc-dev/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
@@ -8,7 +8,7 @@ import (
88
"database/sql"
99
"testing"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
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
@@ -8,7 +8,7 @@ import (
88
"database/sql"
99
"testing"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
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
@@ -8,7 +8,7 @@ import (
88
"database/sql"
99
"testing"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
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
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
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
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
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
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
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
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/kyleconroy/sqlc/internal/sqltest"
11+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1212
)
1313

1414
// 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
@@ -9,7 +9,7 @@ import (
99
"strings"
1010
"testing"
1111

12-
"github.com/kyleconroy/sqlc/internal/sqltest"
12+
"github.com/sqlc-dev/sqlc/internal/sqltest"
1313

1414
"github.com/google/go-cmp/cmp"
1515
)

0 commit comments

Comments
 (0)
0