// Code generated by protoc-gen-micro. DO NOT EDIT. // source: proto/crypto.proto package crypto import ( fmt "fmt" proto "github.com/golang/protobuf/proto" math "math" ) import ( context "context" api "github.com/micro/micro/v3/service/api" client "github.com/micro/micro/v3/service/client" server "github.com/micro/micro/v3/service/server" ) // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal var _ = fmt.Errorf var _ = math.Inf // This is a compile-time assertion to ensure that this generated file // is compatible with the proto package it is being compiled against. // A compilation error at this line likely means your copy of the // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package // Reference imports to suppress errors if they are not otherwise used. var _ api.Endpoint var _ context.Context var _ client.Option var _ server.Option // Api Endpoints for Crypto service func NewCryptoEndpoints() []*api.Endpoint { return []*api.Endpoint{} } // Client API for Crypto service type CryptoService interface { Quote(ctx context.Context, in *QuoteRequest, opts ...client.CallOption) (*QuoteResponse, error) Price(ctx context.Context, in *PriceRequest, opts ...client.CallOption) (*PriceResponse, error) History(ctx context.Context, in *HistoryRequest, opts ...client.CallOption) (*HistoryResponse, error) } type cryptoService struct { c client.Client name string } func NewCryptoService(name string, c client.Client) CryptoService { return &cryptoService{ c: c, name: name, } } func (c *cryptoService) Quote(ctx context.Context, in *QuoteRequest, opts ...client.CallOption) (*QuoteResponse, error) { req := c.c.NewRequest(c.name, "Crypto.Quote", in) out := new(QuoteResponse) err := c.c.Call(ctx, req, out, opts...) if err != nil { return nil, err } return out, nil } func (c *cryptoService) Price(ctx context.Context, in *PriceRequest, opts ...client.CallOption) (*PriceResponse, error) { req := c.c.NewRequest(c.name, "Crypto.Price", in) out := new(PriceResponse) err := c.c.Call(ctx, req, out, opts...) if err != nil { return nil, err } return out, nil } func (c *cryptoService) History(ctx context.Context, in *HistoryRequest, opts ...client.CallOption) (*HistoryResponse, error) { req := c.c.NewRequest(c.name, "Crypto.History", in) out := new(HistoryResponse) err := c.c.Call(ctx, req, out, opts...) if err != nil { return nil, err } return out, nil } // Server API for Crypto service type CryptoHandler interface { Quote(context.Context, *QuoteRequest, *QuoteResponse) error Price(context.Context, *PriceRequest, *PriceResponse) error History(context.Context, *HistoryRequest, *HistoryResponse) error } func RegisterCryptoHandler(s server.Server, hdlr CryptoHandler, opts ...server.HandlerOption) error { type crypto interface { Quote(ctx context.Context, in *QuoteRequest, out *QuoteResponse) error Price(ctx context.Context, in *PriceRequest, out *PriceResponse) error History(ctx context.Context, in *HistoryRequest, out *HistoryResponse) error } type Crypto struct { crypto } h := &cryptoHandler{hdlr} return s.Handle(s.NewHandler(&Crypto{h}, opts...)) } type cryptoHandler struct { CryptoHandler } func (h *cryptoHandler) Quote(ctx context.Context, in *QuoteRequest, out *QuoteResponse) error { return h.CryptoHandler.Quote(ctx, in, out) } func (h *cryptoHandler) Price(ctx context.Context, in *PriceRequest, out *PriceResponse) error { return h.CryptoHandler.Price(ctx, in, out) } func (h *cryptoHandler) History(ctx context.Context, in *HistoryRequest, out *HistoryResponse) error { return h.CryptoHandler.History(ctx, in, out) }