aboutsummaryrefslogtreecommitdiff
path: root/tests/extras/gomock/client.go
blob: b8cd7ea2543a33362e0cf42a000d844fcb048b9c (plain)
1
2
3
4
5
6
7
8
9
10
package client

import (
	"google.golang.org/genproto/googleapis/bytestream"
	"google.golang.org/grpc"
)

type Client interface {
	Connect(grpc.ClientConnInterface) *bytestream.ByteStreamClient
}