Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding GRPC support to go-sdk #175

Open
wants to merge 13 commits into
base: main
Choose a base branch
from
Open
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/keploy/go-sdk

go 1.17

// replace go.keploy.io/server v0.8.0 => ../keploy

require (
github.com/aws/aws-sdk-go v1.42.23
github.com/bnkamalesh/webgo/v4 v4.1.11
Expand All @@ -24,7 +26,7 @@ require (
github.com/jhump/protoreflect v1.14.0
github.com/lestrrat-go/jwx v1.2.25
github.com/valyala/fasthttp v1.40.0
go.keploy.io/server v0.8.0
go.keploy.io/server v0.8.1
)

require (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ go.keploy.io/server v0.5.6/go.mod h1:/wHYlepZLITJ+MsYnRfRED9K/ENset2JhfzeAqSGnV0
go.keploy.io/server v0.7.8/go.mod h1:Xm0Zzt2iBRrvoDY7fBMm8M+geV+ZlkknbqKRVjC3K0I=
go.keploy.io/server v0.7.12/go.mod h1:ch4rD1NCgtxozDHD9yVk+sLHWz5HgefOqrgEdEIgfBQ=
go.keploy.io/server v0.7.20/go.mod h1:cu/y7NQ8Io1OP2BfMtfFQugYd/UanRvDWpzcyulx/Qo=
go.keploy.io/server v0.8.0 h1:AN7j3wNoXAPklYu+5KwMZOg57M3eYinI0bOTrhHho7s=
go.keploy.io/server v0.8.0/go.mod h1:NdVsySEK6BCZdqeqY5eCIMJL01VmfvPIvjxBpBUcsQE=
go.keploy.io/server v0.8.1 h1:tAHVL2cU3n/YQbOvA5R7RvG3WcRSUnQ+0IFzsucTTCs=
go.keploy.io/server v0.8.1/go.mod h1:NdVsySEK6BCZdqeqY5eCIMJL01VmfvPIvjxBpBUcsQE=
go.mongodb.org/mongo-driver v1.8.3 h1:TDKlTkGDKm9kkJVUOAXDK5/fkqKHJVwYQSpoRfB43R4=
go.mongodb.org/mongo-driver v1.8.3/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
Expand Down
Loading