164 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			164 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Code generated by protoc-gen-go. DO NOT EDIT.
 | |
| // source: github.com/micro/go-micro/service/grpc/examples/greeter/server/proto/hello/hello.proto
 | |
| 
 | |
| /*
 | |
| Package go_micro_srv_greeter is a generated protocol buffer package.
 | |
| 
 | |
| It is generated from these files:
 | |
| 	github.com/micro/go-micro/service/grpc/examples/greeter/server/proto/hello/hello.proto
 | |
| 
 | |
| It has these top-level messages:
 | |
| 	Request
 | |
| 	Response
 | |
| */
 | |
| package go_micro_srv_greeter
 | |
| 
 | |
| import proto "github.com/golang/protobuf/proto"
 | |
| import fmt "fmt"
 | |
| import math "math"
 | |
| 
 | |
| import (
 | |
| 	context "golang.org/x/net/context"
 | |
| 	grpc "google.golang.org/grpc"
 | |
| )
 | |
| 
 | |
| // 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
 | |
| 
 | |
| type Request struct {
 | |
| 	Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
 | |
| }
 | |
| 
 | |
| func (m *Request) Reset()                    { *m = Request{} }
 | |
| func (m *Request) String() string            { return proto.CompactTextString(m) }
 | |
| func (*Request) ProtoMessage()               {}
 | |
| func (*Request) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
 | |
| 
 | |
| func (m *Request) GetName() string {
 | |
| 	if m != nil {
 | |
| 		return m.Name
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| type Response struct {
 | |
| 	Msg string `protobuf:"bytes,1,opt,name=msg" json:"msg,omitempty"`
 | |
| }
 | |
| 
 | |
| func (m *Response) Reset()                    { *m = Response{} }
 | |
| func (m *Response) String() string            { return proto.CompactTextString(m) }
 | |
| func (*Response) ProtoMessage()               {}
 | |
| func (*Response) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
 | |
| 
 | |
| func (m *Response) GetMsg() string {
 | |
| 	if m != nil {
 | |
| 		return m.Msg
 | |
| 	}
 | |
| 	return ""
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterType((*Request)(nil), "go.micro.srv.greeter.Request")
 | |
| 	proto.RegisterType((*Response)(nil), "go.micro.srv.greeter.Response")
 | |
| }
 | |
| 
 | |
| // Reference imports to suppress errors if they are not otherwise used.
 | |
| var _ context.Context
 | |
| var _ grpc.ClientConn
 | |
| 
 | |
| // This is a compile-time assertion to ensure that this generated file
 | |
| // is compatible with the grpc package it is being compiled against.
 | |
| const _ = grpc.SupportPackageIsVersion4
 | |
| 
 | |
| // Client API for Say service
 | |
| 
 | |
| type SayClient interface {
 | |
| 	Hello(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
 | |
| }
 | |
| 
 | |
| type sayClient struct {
 | |
| 	cc *grpc.ClientConn
 | |
| }
 | |
| 
 | |
| func NewSayClient(cc *grpc.ClientConn) SayClient {
 | |
| 	return &sayClient{cc}
 | |
| }
 | |
| 
 | |
| func (c *sayClient) Hello(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
 | |
| 	out := new(Response)
 | |
| 	err := grpc.Invoke(ctx, "/go.micro.srv.greeter.Say/Hello", in, out, c.cc, opts...)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return out, nil
 | |
| }
 | |
| 
 | |
| // Server API for Say service
 | |
| 
 | |
| type SayServer interface {
 | |
| 	Hello(context.Context, *Request) (*Response, error)
 | |
| }
 | |
| 
 | |
| func RegisterSayServer(s *grpc.Server, srv SayServer) {
 | |
| 	s.RegisterService(&_Say_serviceDesc, srv)
 | |
| }
 | |
| 
 | |
| func _Say_Hello_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | |
| 	in := new(Request)
 | |
| 	if err := dec(in); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if interceptor == nil {
 | |
| 		return srv.(SayServer).Hello(ctx, in)
 | |
| 	}
 | |
| 	info := &grpc.UnaryServerInfo{
 | |
| 		Server:     srv,
 | |
| 		FullMethod: "/go.micro.srv.greeter.Say/Hello",
 | |
| 	}
 | |
| 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | |
| 		return srv.(SayServer).Hello(ctx, req.(*Request))
 | |
| 	}
 | |
| 	return interceptor(ctx, in, info, handler)
 | |
| }
 | |
| 
 | |
| var _Say_serviceDesc = grpc.ServiceDesc{
 | |
| 	ServiceName: "go.micro.srv.greeter.Say",
 | |
| 	HandlerType: (*SayServer)(nil),
 | |
| 	Methods: []grpc.MethodDesc{
 | |
| 		{
 | |
| 			MethodName: "Hello",
 | |
| 			Handler:    _Say_Hello_Handler,
 | |
| 		},
 | |
| 	},
 | |
| 	Streams:  []grpc.StreamDesc{},
 | |
| 	Metadata: "github.com/micro/go-micro/service/grpc/examples/greeter/server/proto/hello/hello.proto",
 | |
| }
 | |
| 
 | |
| func init() {
 | |
| 	proto.RegisterFile("github.com/micro/go-micro/service/grpc/examples/greeter/server/proto/hello/hello.proto", fileDescriptor0)
 | |
| }
 | |
| 
 | |
| var fileDescriptor0 = []byte{
 | |
| 	// 186 bytes of a gzipped FileDescriptorProto
 | |
| 	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x8e, 0xcd, 0xaa, 0xc2, 0x30,
 | |
| 	0x10, 0x85, 0x6f, 0xe9, 0xfd, 0x33, 0x2b, 0x09, 0x2e, 0x44, 0xac, 0x48, 0x57, 0x6e, 0x4c, 0x40,
 | |
| 	0x5f, 0xa2, 0x3b, 0xa1, 0x3e, 0x41, 0x5b, 0x86, 0xb4, 0xd0, 0x74, 0xe2, 0x4c, 0x5a, 0xf4, 0xed,
 | |
| 	0xa5, 0x31, 0x4b, 0xdd, 0x0c, 0x87, 0xf9, 0x98, 0xf9, 0x8e, 0x28, 0x4c, 0xe7, 0xdb, 0xb1, 0x56,
 | |
| 	0x0d, 0x5a, 0x6d, 0xbb, 0x86, 0x50, 0x1b, 0x3c, 0x1a, 0x72, 0x8d, 0x86, 0x7b, 0x65, 0x5d, 0x0f,
 | |
| 	0xac, 0x0d, 0x01, 0x78, 0x20, 0xcd, 0x40, 0x13, 0x90, 0x76, 0x84, 0x1e, 0x75, 0x0b, 0x7d, 0x1f,
 | |
| 	0xa7, 0x0a, 0x1b, 0xb9, 0x32, 0xa8, 0xc2, 0x07, 0xc5, 0x34, 0xa9, 0x78, 0x94, 0x67, 0xe2, 0xaf,
 | |
| 	0x84, 0xdb, 0x08, 0xec, 0xa5, 0x14, 0xdf, 0x43, 0x65, 0x61, 0x9d, 0xec, 0x93, 0xc3, 0xa2, 0x0c,
 | |
| 	0x39, 0xdf, 0x8a, 0xff, 0x12, 0xd8, 0xe1, 0xc0, 0x20, 0x97, 0x22, 0xb5, 0x6c, 0x22, 0x9e, 0xe3,
 | |
| 	0xe9, 0x22, 0xd2, 0x6b, 0xf5, 0x90, 0x85, 0xf8, 0x29, 0x66, 0x91, 0xcc, 0xd4, 0x3b, 0x87, 0x8a,
 | |
| 	0x82, 0xcd, 0xee, 0x13, 0x7e, 0x09, 0xf2, 0xaf, 0xfa, 0x37, 0x54, 0x3d, 0x3f, 0x03, 0x00, 0x00,
 | |
| 	0xff, 0xff, 0xf2, 0x68, 0x96, 0xe9, 0xf6, 0x00, 0x00, 0x00,
 | |
| }
 |