File tree Expand file tree Collapse file tree 5 files changed +11
-8
lines changed Expand file tree Collapse file tree 5 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1
- module github.com/tabbed /sqlc-gen-kotlin
1
+ module github.com/sqlc-dev /sqlc-gen-kotlin
2
2
3
3
go 1.19
4
4
5
5
require (
6
6
buf.build/gen/go/sqlc/sqlc/protocolbuffers/go v1.30.0-20230621221448-196413f69ab3.1
7
7
github.com/jinzhu/inflection v1.0.0
8
+ github.com/sqlc-dev/sqlc-go v1.18.1
8
9
github.com/tabbed/sqlc-go v1.18.0
9
10
)
10
11
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
5
5
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38 =
6
6
github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E =
7
7
github.com/jinzhu/inflection v1.0.0 /go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc =
8
+ github.com/sqlc-dev/sqlc-go v1.18.1 h1:mmudfN9G938piXnZGvrMEHp9RF4dD+InQIY1BaoQOvU =
9
+ github.com/sqlc-dev/sqlc-go v1.18.1 /go.mod h1:v6c+FMh0YrbT9RU9+S5Sh62VXmVhdpTsQoXn1QxH294 =
8
10
github.com/tabbed/sqlc-go v1.18.0 h1:GNE8b8xue8fKVptQnr3Z6DV8FqdokyDYML7O0kYtbe4 =
9
11
github.com/tabbed/sqlc-go v1.18.0 /go.mod h1:qx8ocsmviBDyRfLNuJQtdu0f5oqa8XBjKxMldl+Wm24 =
10
12
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ import (
10
10
"strings"
11
11
12
12
"buf.build/gen/go/sqlc/sqlc/protocolbuffers/go/protos/plugin"
13
- "github.com/tabbed /sqlc-go/metadata"
14
- "github.com/tabbed /sqlc-go/sdk"
13
+ "github.com/sqlc-dev /sqlc-go/metadata"
14
+ "github.com/sqlc-dev /sqlc-go/sdk"
15
15
16
- "github.com/tabbed /sqlc-gen-kotlin/internal/inflection"
16
+ "github.com/sqlc-dev /sqlc-gen-kotlin/internal/inflection"
17
17
)
18
18
19
19
var ktIdentPattern = regexp .MustCompile ("[^a-zA-Z0-9_]+" )
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
11
11
12
12
"buf.build/gen/go/sqlc/sqlc/protocolbuffers/go/protos/plugin"
13
13
14
- "github.com/tabbed /sqlc-gen-kotlin/internal/core"
15
- "github.com/tabbed /sqlc-go/sdk"
14
+ "github.com/sqlc-dev /sqlc-gen-kotlin/internal/core"
15
+ "github.com/sqlc-dev /sqlc-go/sdk"
16
16
)
17
17
18
18
//go:embed tmpl/ktmodels.tmpl
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
3
import (
4
- "github.com/tabbed /sqlc-go/codegen"
4
+ "github.com/sqlc-dev /sqlc-go/codegen"
5
5
6
- kotlin "github.com/tabbed /sqlc-gen-kotlin/internal"
6
+ kotlin "github.com/sqlc-dev /sqlc-gen-kotlin/internal"
7
7
)
8
8
9
9
func main () {
You can’t perform that action at this time.
0 commit comments