Skip to content

Commit d1e28b7

Browse files
committed
Add UUID, more
Signed-off-by: James Hamlin <jfhamlin@gmail.com>
1 parent 270be69 commit d1e28b7

File tree

16 files changed

+542
-52
lines changed

16 files changed

+542
-52
lines changed

cmd/gen-import-interop/main.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ var defaultPackages = []string{
4242
"crypto/x509",
4343
"crypto/x509/pkix",
4444
"database/sql",
45+
"github.com/google/uuid",
4546
"database/sql/driver",
4647
"debug/buildinfo",
4748
"debug/dwarf",

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ require (
1414

1515
require (
1616
github.com/davecgh/go-spew v1.1.1 // indirect
17+
github.com/google/uuid v1.6.0 // indirect
1718
github.com/modern-go/reflect2 v1.0.2 // indirect
1819
github.com/pmezard/go-difflib v1.0.0 // indirect
1920
go4.org/unsafe/assume-no-moving-gc v0.0.0-20230525183740-e7c30c78aeb2 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38
99
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1010
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
1111
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
12+
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
13+
github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
1214
github.com/kylelemons/godebug v1.1.0 h1:RPNrshWIDI6G2gRW9EHilWtl7Z6Sb1BR0xunSBf0SNc=
1315
github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
1416
github.com/mitchellh/hashstructure/v2 v2.0.2 h1:vGKWl0YJqUNxE8d+h8f6NJLcCJrgbhC4NcD46KavDd4=

pkg/codegen/TODO.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,5 @@ Handle
1313
- java.io.InputStreamReader20 "java.io.InputStreamReader"
1414
- java.io.StringReader21 "java.io.StringReader"
1515
- java.lang.UnsupportedOperationException14 "java.lang.UnsupportedOperationException"
16-
- java.lang6 "java.lang"
17-
- java.net30 "java.net"
1816
- java.util.concurrent.CountDownLatch25 "java.util.concurrent.CountDownLatch"
1917
- java.util.concurrent8 "java.util.concurrent"
20-
- java.util22 "java.util"

pkg/codegen/testdata/codegen/test/core.go

Lines changed: 74 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)