mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
3.7 KiB
110 lines
3.7 KiB
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.3.0
|
|
// - protoc (unknown)
|
|
// source: greet/v1/greet.proto
|
|
|
|
package greetv1
|
|
|
|
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 (
|
|
GreetService_Greet_FullMethodName = "/greet.v1.GreetService/Greet"
|
|
)
|
|
|
|
// GreetServiceClient is the client API for GreetService 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 GreetServiceClient interface {
|
|
Greet(ctx context.Context, in *GreetRequest, opts ...grpc.CallOption) (*GreetResponse, error)
|
|
}
|
|
|
|
type greetServiceClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewGreetServiceClient(cc grpc.ClientConnInterface) GreetServiceClient {
|
|
return &greetServiceClient{cc}
|
|
}
|
|
|
|
func (c *greetServiceClient) Greet(ctx context.Context, in *GreetRequest, opts ...grpc.CallOption) (*GreetResponse, error) {
|
|
out := new(GreetResponse)
|
|
err := c.cc.Invoke(ctx, GreetService_Greet_FullMethodName, in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// GreetServiceServer is the server API for GreetService service.
|
|
// All implementations must embed UnimplementedGreetServiceServer
|
|
// for forward compatibility
|
|
type GreetServiceServer interface {
|
|
Greet(context.Context, *GreetRequest) (*GreetResponse, error)
|
|
mustEmbedUnimplementedGreetServiceServer()
|
|
}
|
|
|
|
// UnimplementedGreetServiceServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedGreetServiceServer struct {
|
|
}
|
|
|
|
func (UnimplementedGreetServiceServer) Greet(context.Context, *GreetRequest) (*GreetResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Greet not implemented")
|
|
}
|
|
func (UnimplementedGreetServiceServer) mustEmbedUnimplementedGreetServiceServer() {}
|
|
|
|
// UnsafeGreetServiceServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to GreetServiceServer will
|
|
// result in compilation errors.
|
|
type UnsafeGreetServiceServer interface {
|
|
mustEmbedUnimplementedGreetServiceServer()
|
|
}
|
|
|
|
func RegisterGreetServiceServer(s grpc.ServiceRegistrar, srv GreetServiceServer) {
|
|
s.RegisterService(&GreetService_ServiceDesc, srv)
|
|
}
|
|
|
|
func _GreetService_Greet_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GreetRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(GreetServiceServer).Greet(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: GreetService_Greet_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(GreetServiceServer).Greet(ctx, req.(*GreetRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// GreetService_ServiceDesc is the grpc.ServiceDesc for GreetService service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var GreetService_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "greet.v1.GreetService",
|
|
HandlerType: (*GreetServiceServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Greet",
|
|
Handler: _GreetService_Greet_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "greet/v1/greet.proto",
|
|
}
|