erigon-pulse/direct/downloader_client.go
2022-07-01 10:20:32 +06:00

28 lines
950 B
Go

package direct
import (
"context"
proto_downloader "github.com/ledgerwatch/erigon-lib/gointerfaces/downloader"
"google.golang.org/grpc"
"google.golang.org/protobuf/types/known/emptypb"
)
type DownloaderClient struct {
server proto_downloader.DownloaderServer
}
func NewDownloaderClient(server proto_downloader.DownloaderServer) *DownloaderClient {
return &DownloaderClient{server: server}
}
func (c *DownloaderClient) Download(ctx context.Context, in *proto_downloader.DownloadRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
return c.server.Download(ctx, in)
}
func (c *DownloaderClient) Verify(ctx context.Context, in *proto_downloader.VerifyRequest, opts ...grpc.CallOption) (*emptypb.Empty, error) {
return c.server.Verify(ctx, in)
}
func (c *DownloaderClient) Stats(ctx context.Context, in *proto_downloader.StatsRequest, opts ...grpc.CallOption) (*proto_downloader.StatsReply, error) {
return c.server.Stats(ctx, in)
}