1031f3122e
Implement `message.Message` interface on all structures and use new methods for conversion instead of functions. make `Unmarshal` and JSON methods to use encoding functions from `message` library. Remove all per-service clients and implement `rpc` library of the functions which execute NeoFS API RPC through new RPC client. Remove no longer used gRPC per-service clients. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
29 lines
703 B
Go
29 lines
703 B
Go
package rpc
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/rpc/client"
|
|
"github.com/nspcc-dev/neofs-api-go/rpc/common"
|
|
"github.com/nspcc-dev/neofs-api-go/v2/accounting"
|
|
)
|
|
|
|
const serviceAccounting = serviceNamePrefix + "accounting.AccountingService"
|
|
|
|
const (
|
|
rpcAccountingBalance = "Balance"
|
|
)
|
|
|
|
// Balance executes AccountingService.Balance RPC.
|
|
func Balance(
|
|
cli *client.Client,
|
|
req *accounting.BalanceRequest,
|
|
opts ...client.CallOption,
|
|
) (*accounting.BalanceResponse, error) {
|
|
resp := new(accounting.BalanceResponse)
|
|
|
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceAccounting, rpcAccountingBalance), req, resp, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return resp, nil
|
|
}
|