forked from TrueCloudLab/frostfs-api-go
[#135] sdk/client: Implement object operations
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
9b0eef0d43
commit
b19e3a48db
2 changed files with 884 additions and 0 deletions
|
@ -4,6 +4,7 @@ import (
|
|||
"github.com/nspcc-dev/neofs-api-go/pkg"
|
||||
v2accounting "github.com/nspcc-dev/neofs-api-go/v2/accounting"
|
||||
v2container "github.com/nspcc-dev/neofs-api-go/v2/container"
|
||||
v2object "github.com/nspcc-dev/neofs-api-go/v2/object"
|
||||
v2session "github.com/nspcc-dev/neofs-api-go/v2/session"
|
||||
"google.golang.org/grpc"
|
||||
)
|
||||
|
@ -40,6 +41,8 @@ type (
|
|||
conn *grpc.ClientConn
|
||||
v2ContainerClient *v2container.Client
|
||||
v2AccountingClient *v2accounting.Client
|
||||
|
||||
objectClientV2 *v2object.Client
|
||||
}
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue