add waitGroups for waiting finish all connects (#131)

closes #130

Reviewed-on: #131
Co-authored-by: Evstigneev Denis <danteevstigneev@yandex.ru>
Co-committed-by: Evstigneev Denis <danteevstigneev@yandex.ru>
This commit is contained in:
2024-03-13 15:36:34 +03:00
parent 52e72aef57
commit db00f3bb91
5 changed files with 73 additions and 21 deletions

13
go.mod
View File

@@ -1,8 +1,15 @@
module go.unistack.org/micro-server-tcp/v3
go 1.16
go 1.20
require (
go.unistack.org/micro/v3 v3.10.14
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
go.unistack.org/micro/v3 v3.10.51
golang.org/x/net v0.22.0
)
require (
github.com/golang/protobuf v1.5.3 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230526203410-71b5a4ffd15e // indirect
google.golang.org/grpc v1.57.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
)