[#267] pkg/client: Extend Client interface with Raw method

Add `Client.Raw` method which returns underlying raw protobuf client.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2021-03-17 14:16:22 +03:00 committed by Alex Vanin
parent a43175e2ea
commit 7cb9b8f283

View file

@ -13,6 +13,9 @@ type Client interface {
Netmap
Object
Session
// Raw must return underlying raw protobuf client.
Raw() *client.Client
}
type clientImpl struct {