Skip to content

Commit 090311d

Browse files
kyleconroyclaude
andauthored
Update module path from kyleconroy/teesql to sqlc-dev/teesql (#41)
Update the Go module path and all import statements to reflect the new repository location under the sqlc-dev organization. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 2f02bb0 commit 090311d

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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/teesql
1+
module github.com/sqlc-dev/teesql
22

33
go 1.21

parser/marshal.go

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

9-
"github.com/kyleconroy/teesql/ast"
9+
"github.com/sqlc-dev/teesql/ast"
1010
)
1111

1212
// jsonNode represents a generic JSON node from the AST JSON format.

parser/parse_ddl.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/teesql/ast"
8+
"github.com/sqlc-dev/teesql/ast"
99
)
1010

1111
func (p *Parser) parseRevertStatement() (*ast.RevertStatement, error) {

parser/parse_dml.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/teesql/ast"
8+
"github.com/sqlc-dev/teesql/ast"
99
)
1010

1111
func (p *Parser) parseInsertStatement() (ast.Statement, error) {

parser/parse_select.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/teesql/ast"
8+
"github.com/sqlc-dev/teesql/ast"
99
)
1010

1111
func (p *Parser) parsePrintStatement() (*ast.PrintStatement, error) {

parser/parse_statements.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"sort"
77
"strings"
88

9-
"github.com/kyleconroy/teesql/ast"
9+
"github.com/sqlc-dev/teesql/ast"
1010
)
1111

1212
func (p *Parser) parseDeclareVariableStatement() (ast.Statement, error) {

parser/parser.go

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

10-
"github.com/kyleconroy/teesql/ast"
10+
"github.com/sqlc-dev/teesql/ast"
1111
)
1212

1313
// Parse parses T-SQL from the given reader and returns an AST Script.

0 commit comments

Comments
 (0)