Skip to content

Commit 2b14100

Browse files
committed
fix v0.1.0
1 parent c3c1eec commit 2b14100

File tree

11 files changed

+121
-16
lines changed

11 files changed

+121
-16
lines changed

examples/exa1/client/exa/client.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/exa1/client/types.go

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/exa2/client/exa/client.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/exa2/client/types.go

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/client/hello/client.go

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/client/types.go

+87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/client/world/client.go

+4-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/internal/handler/routes.go

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/test/internal/types/types.go

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ require (
99
github.com/hashicorp/consul/api v1.18.0
1010
github.com/mailru/easyjson v0.7.7
1111
github.com/pkg/errors v0.9.1
12+
github.com/spf13/cast v1.5.1 // indirect
1213
github.com/urfave/cli/v2 v2.24.4
1314
github.com/valyala/fasthttp v1.44.0
1415
github.com/zeromicro/go-zero v1.5.3

go.sum

+3
Original file line numberDiff line numberDiff line change
@@ -678,6 +678,7 @@ github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoD
678678
github.com/form3tech-oss/jwt-go v3.2.3+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
679679
github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g=
680680
github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k=
681+
github.com/frankban/quicktest v1.14.4/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0=
681682
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
682683
github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
683684
github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU=
@@ -1214,6 +1215,8 @@ github.com/spf13/afero v1.3.3/go.mod h1:5KUK8ByomD5Ti5Artl0RtHeI5pTF7MIDuXL3yY52
12141215
github.com/spf13/afero v1.6.0/go.mod h1:Ai8FlHk4v/PARR026UzYexafAt9roJ7LcLMAmO6Z93I=
12151216
github.com/spf13/afero v1.9.2/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y=
12161217
github.com/spf13/cast v1.4.1/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE=
1218+
github.com/spf13/cast v1.5.1 h1:R+kOtfhWQE6TVQzY+4D7wJLBgkdVasCEFxSUBYBYIlA=
1219+
github.com/spf13/cast v1.5.1/go.mod h1:b9PdjNptOpzXr7Rq1q9gJML/2cdGQAo69NKzQ10KN48=
12171220
github.com/spf13/cobra v1.3.0/go.mod h1:BrRVncBjOJa/eUcVVm9CE+oC6as8k+VYr4NY7WCi9V4=
12181221
github.com/spf13/cobra v1.7.0 h1:hyqWnYt1ZQShIddO5kBpj3vu05/++x6tJ6dg8EC572I=
12191222
github.com/spf13/cobra v1.7.0/go.mod h1:uLxZILRyS/50WlhOIKD7W6V5bgeIt+4sICxh6uRMrb0=

0 commit comments

Comments
 (0)