119 lines
3.1 KiB
Go
119 lines
3.1 KiB
Go
// Code generated by protoc-gen-micro. DO NOT EDIT.
|
|
// source: github.com/micro/go-bot/proto/bot.proto
|
|
|
|
/*
|
|
Package go_micro_bot is a generated protocol buffer package.
|
|
|
|
It is generated from these files:
|
|
github.com/micro/go-bot/proto/bot.proto
|
|
|
|
It has these top-level messages:
|
|
HelpRequest
|
|
HelpResponse
|
|
ExecRequest
|
|
ExecResponse
|
|
*/
|
|
package go_micro_bot
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
|
|
import (
|
|
client "github.com/micro/go-micro/client"
|
|
server "github.com/micro/go-micro/server"
|
|
context "context"
|
|
)
|
|
|
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ client.Option
|
|
var _ server.Option
|
|
|
|
// Client API for Command service
|
|
|
|
type CommandService interface {
|
|
Help(ctx context.Context, in *HelpRequest, opts ...client.CallOption) (*HelpResponse, error)
|
|
Exec(ctx context.Context, in *ExecRequest, opts ...client.CallOption) (*ExecResponse, error)
|
|
}
|
|
|
|
type commandService struct {
|
|
c client.Client
|
|
name string
|
|
}
|
|
|
|
func NewCommandService(name string, c client.Client) CommandService {
|
|
if c == nil {
|
|
c = client.NewClient()
|
|
}
|
|
if len(name) == 0 {
|
|
name = "go.micro.bot"
|
|
}
|
|
return &commandService{
|
|
c: c,
|
|
name: name,
|
|
}
|
|
}
|
|
|
|
func (c *commandService) Help(ctx context.Context, in *HelpRequest, opts ...client.CallOption) (*HelpResponse, error) {
|
|
req := c.c.NewRequest(c.name, "Command.Help", in)
|
|
out := new(HelpResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *commandService) Exec(ctx context.Context, in *ExecRequest, opts ...client.CallOption) (*ExecResponse, error) {
|
|
req := c.c.NewRequest(c.name, "Command.Exec", in)
|
|
out := new(ExecResponse)
|
|
err := c.c.Call(ctx, req, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// Server API for Command service
|
|
|
|
type CommandHandler interface {
|
|
Help(context.Context, *HelpRequest, *HelpResponse) error
|
|
Exec(context.Context, *ExecRequest, *ExecResponse) error
|
|
}
|
|
|
|
func RegisterCommandHandler(s server.Server, hdlr CommandHandler, opts ...server.HandlerOption) error {
|
|
type _command interface {
|
|
Help(ctx context.Context, in *HelpRequest, out *HelpResponse) error
|
|
Exec(ctx context.Context, in *ExecRequest, out *ExecResponse) error
|
|
}
|
|
type Command struct {
|
|
_command
|
|
}
|
|
h := &commandHandler{hdlr}
|
|
return s.Handle(s.NewHandler(&Command{h}, opts...))
|
|
}
|
|
|
|
type commandHandler struct {
|
|
CommandHandler
|
|
}
|
|
|
|
func (h *commandHandler) Help(ctx context.Context, in *HelpRequest, out *HelpResponse) error {
|
|
return h.CommandHandler.Help(ctx, in, out)
|
|
}
|
|
|
|
func (h *commandHandler) Exec(ctx context.Context, in *ExecRequest, out *ExecResponse) error {
|
|
return h.CommandHandler.Exec(ctx, in, out)
|
|
}
|