mirror of
https://github.com/raz-varren/sacrificial-socket.git
synced 2025-10-06 00:26:55 +08:00
13 lines
224 B
Go
13 lines
224 B
Go
package ssgrpc
|
|
|
|
import (
|
|
"google.golang.org/grpc"
|
|
"github.com/raz-varren/sacrificial-socket/backend/ssgrpc/transport"
|
|
//"sync"
|
|
)
|
|
|
|
type propagateClient struct {
|
|
conn *grpc.ClientConn
|
|
client transport.PropagateClient
|
|
}
|