forked from TrueCloudLab/frostfs-api-go
30 lines
766 B
Go
30 lines
766 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/reputation"
|
||
|
)
|
||
|
|
||
|
const serviceReputation = serviceNamePrefix + "reputation.ReputationService"
|
||
|
|
||
|
const (
|
||
|
rpcReputationSendLocalTrust = "SendLocalTrust"
|
||
|
)
|
||
|
|
||
|
// SendLocalTrust executes ReputationService.SendLocalTrust RPC.
|
||
|
func SendLocalTrust(
|
||
|
cli *client.Client,
|
||
|
req *reputation.SendLocalTrustRequest,
|
||
|
opts ...client.CallOption,
|
||
|
) (*reputation.SendLocalTrustResponse, error) {
|
||
|
resp := new(reputation.SendLocalTrustResponse)
|
||
|
|
||
|
err := client.SendUnary(cli, common.CallMethodInfoUnary(serviceReputation, rpcReputationSendLocalTrust), req, resp, opts...)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
return resp, nil
|
||
|
}
|