Skip to content

Commit 12a98f7

Browse files
kyleconroyclaude
andauthored
Update module path from kyleconroy/doubleclick to sqlc-dev/doubleclick (#28)
Migrate the Go module and all import paths to the new sqlc-dev organization. Co-authored-by: Claude <noreply@anthropic.com>
1 parent ce1def3 commit 12a98f7

File tree

21 files changed

+25
-25
lines changed

21 files changed

+25
-25
lines changed

ast/ast.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"encoding/json"
66
"math"
77

8-
"github.com/kyleconroy/doubleclick/token"
8+
"github.com/sqlc-dev/doubleclick/token"
99
)
1010

1111
// Node is the interface implemented by all AST nodes.

cmd/analyze/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"strings"
1010

11-
"github.com/kyleconroy/doubleclick/parser"
11+
"github.com/sqlc-dev/doubleclick/parser"
1212
)
1313

1414
type testMetadata struct {

cmd/fixall/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"strings"
1010

11-
"github.com/kyleconroy/doubleclick/parser"
11+
"github.com/sqlc-dev/doubleclick/parser"
1212
)
1313

1414
type testMetadata struct {

cmd/fixparseerror2/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"strings"
1010

11-
"github.com/kyleconroy/doubleclick/parser"
11+
"github.com/sqlc-dev/doubleclick/parser"
1212
)
1313

1414
type testMetadata struct {

cmd/fixremaining/main.go

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

10-
"github.com/kyleconroy/doubleclick/parser"
10+
"github.com/sqlc-dev/doubleclick/parser"
1111
)
1212

1313
type testMetadata struct {

cmd/fixtruncated/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"strings"
1010

11-
"github.com/kyleconroy/doubleclick/parser"
11+
"github.com/sqlc-dev/doubleclick/parser"
1212
)
1313

1414
type testMetadata struct {

cmd/generateast/main.go

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

12-
"github.com/kyleconroy/doubleclick/parser"
12+
"github.com/sqlc-dev/doubleclick/parser"
1313
)
1414

1515
type testMetadata struct {

cmd/testcase/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/kyleconroy/doubleclick/parser"
8+
"github.com/sqlc-dev/doubleclick/parser"
99
)
1010

1111
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/kyleconroy/doubleclick
1+
module github.com/sqlc-dev/doubleclick
22

33
go 1.24.7

internal/explain/explain.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"strings"
77

8-
"github.com/kyleconroy/doubleclick/ast"
8+
"github.com/sqlc-dev/doubleclick/ast"
99
)
1010

1111
// Explain returns the EXPLAIN AST output for a statement, matching ClickHouse's format.

0 commit comments

Comments
 (0)