112 lines
3.8 KiB
Go
112 lines
3.8 KiB
Go
|
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// - protoc-gen-go-grpc v1.3.0
|
||
|
// - protoc (unknown)
|
||
|
// source: cerc/onboarding/v1/tx.proto
|
||
|
|
||
|
package onboardingv1
|
||
|
|
||
|
import (
|
||
|
context "context"
|
||
|
grpc "google.golang.org/grpc"
|
||
|
codes "google.golang.org/grpc/codes"
|
||
|
status "google.golang.org/grpc/status"
|
||
|
)
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the grpc package it is being compiled against.
|
||
|
// Requires gRPC-Go v1.32.0 or later.
|
||
|
const _ = grpc.SupportPackageIsVersion7
|
||
|
|
||
|
const (
|
||
|
Msg_OnboardParticipant_FullMethodName = "/cerc.onboarding.v1.Msg/OnboardParticipant"
|
||
|
)
|
||
|
|
||
|
// MsgClient is the client API for Msg service.
|
||
|
//
|
||
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
||
|
type MsgClient interface {
|
||
|
// OnboardParticipant defines a method for enrolling a new validator.
|
||
|
OnboardParticipant(ctx context.Context, in *MsgOnboardParticipant, opts ...grpc.CallOption) (*MsgOnboardParticipantResponse, error)
|
||
|
}
|
||
|
|
||
|
type msgClient struct {
|
||
|
cc grpc.ClientConnInterface
|
||
|
}
|
||
|
|
||
|
func NewMsgClient(cc grpc.ClientConnInterface) MsgClient {
|
||
|
return &msgClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *msgClient) OnboardParticipant(ctx context.Context, in *MsgOnboardParticipant, opts ...grpc.CallOption) (*MsgOnboardParticipantResponse, error) {
|
||
|
out := new(MsgOnboardParticipantResponse)
|
||
|
err := c.cc.Invoke(ctx, Msg_OnboardParticipant_FullMethodName, in, out, opts...)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
// MsgServer is the server API for Msg service.
|
||
|
// All implementations must embed UnimplementedMsgServer
|
||
|
// for forward compatibility
|
||
|
type MsgServer interface {
|
||
|
// OnboardParticipant defines a method for enrolling a new validator.
|
||
|
OnboardParticipant(context.Context, *MsgOnboardParticipant) (*MsgOnboardParticipantResponse, error)
|
||
|
mustEmbedUnimplementedMsgServer()
|
||
|
}
|
||
|
|
||
|
// UnimplementedMsgServer must be embedded to have forward compatible implementations.
|
||
|
type UnimplementedMsgServer struct {
|
||
|
}
|
||
|
|
||
|
func (UnimplementedMsgServer) OnboardParticipant(context.Context, *MsgOnboardParticipant) (*MsgOnboardParticipantResponse, error) {
|
||
|
return nil, status.Errorf(codes.Unimplemented, "method OnboardParticipant not implemented")
|
||
|
}
|
||
|
func (UnimplementedMsgServer) mustEmbedUnimplementedMsgServer() {}
|
||
|
|
||
|
// UnsafeMsgServer may be embedded to opt out of forward compatibility for this service.
|
||
|
// Use of this interface is not recommended, as added methods to MsgServer will
|
||
|
// result in compilation errors.
|
||
|
type UnsafeMsgServer interface {
|
||
|
mustEmbedUnimplementedMsgServer()
|
||
|
}
|
||
|
|
||
|
func RegisterMsgServer(s grpc.ServiceRegistrar, srv MsgServer) {
|
||
|
s.RegisterService(&Msg_ServiceDesc, srv)
|
||
|
}
|
||
|
|
||
|
func _Msg_OnboardParticipant_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(MsgOnboardParticipant)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(MsgServer).OnboardParticipant(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
|
FullMethod: Msg_OnboardParticipant_FullMethodName,
|
||
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(MsgServer).OnboardParticipant(ctx, req.(*MsgOnboardParticipant))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
|
// Msg_ServiceDesc is the grpc.ServiceDesc for Msg service.
|
||
|
// It's only intended for direct use with grpc.RegisterService,
|
||
|
// and not to be introspected or modified (even as a copy)
|
||
|
var Msg_ServiceDesc = grpc.ServiceDesc{
|
||
|
ServiceName: "cerc.onboarding.v1.Msg",
|
||
|
HandlerType: (*MsgServer)(nil),
|
||
|
Methods: []grpc.MethodDesc{
|
||
|
{
|
||
|
MethodName: "OnboardParticipant",
|
||
|
Handler: _Msg_OnboardParticipant_Handler,
|
||
|
},
|
||
|
},
|
||
|
Streams: []grpc.StreamDesc{},
|
||
|
Metadata: "cerc/onboarding/v1/tx.proto",
|
||
|
}
|