session: move errors to a separate file

This commit is contained in:
Leonard Lyubich 2020-05-08 12:37:56 +03:00
parent b079a7604f
commit 2c2150b101
3 changed files with 15 additions and 9 deletions

View file

@ -4,7 +4,6 @@ import (
"context"
"crypto/ecdsa"
"github.com/nspcc-dev/neofs-api-go/internal"
"github.com/nspcc-dev/neofs-api-go/service"
crypto "github.com/nspcc-dev/neofs-crypto"
"google.golang.org/grpc"
@ -18,10 +17,6 @@ type gRPCCreator struct {
clientFunc func(*grpc.ClientConn) SessionClient
}
const ErrNilCreateParamsSource = internal.Error("create params source is nil")
const ErrNilGPRCClientConn = internal.Error("gRPC client connection is nil")
// NewGRPCCreator unites virtual gRPC client with private ket and returns Creator interface.
//
// If passed ClientConn is nil, ErrNilGPRCClientConn returns.