mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
128 lines
3.6 KiB
Go
128 lines
3.6 KiB
Go
// Code generated by protoc-gen-micro. DO NOT EDIT.
|
|
// source: proto/email.proto
|
|
|
|
package email
|
|
|
|
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 Email service
|
|
|
|
func NewEmailEndpoints() []*api.Endpoint {
|
|
return []*api.Endpoint{}
|
|
}
|
|
|
|
// Client API for Email service
|
|
|
|
type EmailService interface {
|
|
Send(ctx context.Context, in *SendRequest, opts ...client.CallOption) (*SendResponse, error)
|
|
Parse(ctx context.Context, in *ParseRequest, opts ...client.CallOption) (*ParseResponse, error)
|
|
Validate(ctx context.Context, in *ValidateRequest, opts ...client.CallOption) (*ValidateResponse, error)
|
|
}
|
|
|
|
type emailService struct {
|
|
c client.Client
|
|
name string
|
|
}
|
|
|
|
func NewEmailService(name string, c client.Client) EmailService {
|
|
return &emailService{
|
|
c: c,
|
|
name: name,
|
|
}
|
|
}
|
|
|
|
func (c *emailService) Send(ctx context.Context, in *SendRequest, opts ...client.CallOption) (*SendResponse, error) {
|
|
req := c.c.NewRequest(c.name, "Email.Send", in)
|
|
out := new(SendResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *emailService) Parse(ctx context.Context, in *ParseRequest, opts ...client.CallOption) (*ParseResponse, error) {
|
|
req := c.c.NewRequest(c.name, "Email.Parse", in)
|
|
out := new(ParseResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *emailService) Validate(ctx context.Context, in *ValidateRequest, opts ...client.CallOption) (*ValidateResponse, error) {
|
|
req := c.c.NewRequest(c.name, "Email.Validate", in)
|
|
out := new(ValidateResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for Email service
|
|
|
|
type EmailHandler interface {
|
|
Send(context.Context, *SendRequest, *SendResponse) error
|
|
Parse(context.Context, *ParseRequest, *ParseResponse) error
|
|
Validate(context.Context, *ValidateRequest, *ValidateResponse) error
|
|
}
|
|
|
|
func RegisterEmailHandler(s server.Server, hdlr EmailHandler, opts ...server.HandlerOption) error {
|
|
type email interface {
|
|
Send(ctx context.Context, in *SendRequest, out *SendResponse) error
|
|
Parse(ctx context.Context, in *ParseRequest, out *ParseResponse) error
|
|
Validate(ctx context.Context, in *ValidateRequest, out *ValidateResponse) error
|
|
}
|
|
type Email struct {
|
|
email
|
|
}
|
|
h := &emailHandler{hdlr}
|
|
return s.Handle(s.NewHandler(&Email{h}, opts...))
|
|
}
|
|
|
|
type emailHandler struct {
|
|
EmailHandler
|
|
}
|
|
|
|
func (h *emailHandler) Send(ctx context.Context, in *SendRequest, out *SendResponse) error {
|
|
return h.EmailHandler.Send(ctx, in, out)
|
|
}
|
|
|
|
func (h *emailHandler) Parse(ctx context.Context, in *ParseRequest, out *ParseResponse) error {
|
|
return h.EmailHandler.Parse(ctx, in, out)
|
|
}
|
|
|
|
func (h *emailHandler) Validate(ctx context.Context, in *ValidateRequest, out *ValidateResponse) error {
|
|
return h.EmailHandler.Validate(ctx, in, out)
|
|
}
|