fix: golint errors

This commit is contained in:
braginini
2021-05-19 10:58:21 +02:00
parent f0048d16fb
commit 5342f10e7f
5 changed files with 23 additions and 14 deletions

View File

@@ -23,12 +23,11 @@ import (
// Client Wraps the Signal Exchange Service gRpc client
type Client struct {
key wgtypes.Key
encryptionKey string
realClient proto.SignalExchangeClient
signalConn *grpc.ClientConn
ctx context.Context
stream proto.SignalExchange_ConnectStreamClient
key wgtypes.Key
realClient proto.SignalExchangeClient
signalConn *grpc.ClientConn
ctx context.Context
stream proto.SignalExchange_ConnectStreamClient
//waiting group to notify once stream is connected
connWg sync.WaitGroup //todo use a channel instead??
}