Skip to content

Commit 2b29297

Browse files
authored
refactor:针对部分功能检查接口做版本兼容 (#290)
1 parent d20e49a commit 2b29297

File tree

3 files changed

+40
-85
lines changed

3 files changed

+40
-85
lines changed

go.mod

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ go 1.19
44

55
require (
66
github.com/gin-gonic/gin v1.4.0
7+
github.com/gogo/protobuf v1.3.2
78
github.com/golang-jwt/jwt/v4 v4.4.2
89
github.com/natefinch/lumberjack v2.0.0+incompatible
910
github.com/stretchr/testify v1.8.1
1011
go.uber.org/zap v1.13.0
11-
google.golang.org/grpc v1.51.0
1212
gopkg.in/yaml.v2 v2.4.0
1313
)
1414

1515
require (
1616
github.com/BurntSushi/toml v0.3.1 // indirect
1717
github.com/davecgh/go-spew v1.1.1 // indirect
1818
github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3 // indirect
19-
github.com/golang/protobuf v1.5.2 // indirect
19+
github.com/golang/protobuf v1.5.4 // indirect
2020
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
2121
github.com/modern-go/reflect2 v1.0.2 // indirect
2222
github.com/pmezard/go-difflib v1.0.0 // indirect
@@ -25,6 +25,9 @@ require (
2525
go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect
2626
golang.org/x/mod v0.6.0 // indirect
2727
golang.org/x/sys v0.3.0 // indirect
28+
golang.org/x/text v0.5.0 // indirect
29+
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
30+
google.golang.org/grpc v1.51.0 // indirect
2831
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
2932
gopkg.in/go-playground/validator.v8 v8.18.2 // indirect
3033
)
@@ -42,7 +45,7 @@ require (
4245
golang.org/x/net v0.4.0 // indirect
4346
golang.org/x/sync v0.1.0
4447
golang.org/x/tools v0.2.0 // indirect
45-
google.golang.org/protobuf v1.28.1 // indirect
48+
google.golang.org/protobuf v1.33.0
4649
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
4750
gopkg.in/yaml.v3 v3.0.1 // indirect
4851
honnef.co/go/tools v0.0.1-2020.1.4 // indirect

0 commit comments

Comments
 (0)