user.pb.go 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. // Code generated by protoc-gen-go.
  2. // source: user.proto
  3. // DO NOT EDIT!
  4. /*
  5. Package user is a generated protocol buffer package.
  6. It is generated from these files:
  7. user.proto
  8. It has these top-level messages:
  9. UserRequest
  10. UserResponse
  11. */
  12. package user
  13. import (
  14. "fmt"
  15. "math"
  16. "github.com/golang/protobuf/proto"
  17. "golang.org/x/net/context"
  18. "google.golang.org/grpc"
  19. )
  20. // Reference imports to suppress errors if they are not otherwise used.
  21. var _ = proto.Marshal
  22. var _ = fmt.Errorf
  23. var _ = math.Inf
  24. // This is a compile-time assertion to ensure that this generated file
  25. // is compatible with the proto package it is being compiled against.
  26. // A compilation error at this line likely means your copy of the
  27. // proto package needs to be updated.
  28. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  29. type UserRequest struct {
  30. Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
  31. }
  32. func (m *UserRequest) Reset() { *m = UserRequest{} }
  33. func (m *UserRequest) String() string { return proto.CompactTextString(m) }
  34. func (*UserRequest) ProtoMessage() {}
  35. func (*UserRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  36. func (m *UserRequest) GetName() string {
  37. if m != nil {
  38. return m.Name
  39. }
  40. return ""
  41. }
  42. type UserResponse struct {
  43. Response string `protobuf:"bytes,1,opt,name=response" json:"response,omitempty"`
  44. }
  45. func (m *UserResponse) Reset() { *m = UserResponse{} }
  46. func (m *UserResponse) String() string { return proto.CompactTextString(m) }
  47. func (*UserResponse) ProtoMessage() {}
  48. func (*UserResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  49. func (m *UserResponse) GetResponse() string {
  50. if m != nil {
  51. return m.Response
  52. }
  53. return ""
  54. }
  55. func init() {
  56. proto.RegisterType((*UserRequest)(nil), "user.UserRequest")
  57. proto.RegisterType((*UserResponse)(nil), "user.UserResponse")
  58. }
  59. // Reference imports to suppress errors if they are not otherwise used.
  60. var _ context.Context
  61. var _ grpc.ClientConn
  62. // This is a compile-time assertion to ensure that this generated file
  63. // is compatible with the grpc package it is being compiled against.
  64. const _ = grpc.SupportPackageIsVersion4
  65. // Client API for User service
  66. type UserClient interface {
  67. GetGrade(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  68. }
  69. type userClient struct {
  70. cc *grpc.ClientConn
  71. }
  72. func NewUserClient(cc *grpc.ClientConn) UserClient {
  73. return &userClient{cc}
  74. }
  75. func (c *userClient) GetGrade(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  76. out := new(UserResponse)
  77. err := grpc.Invoke(ctx, "/user.User/GetGrade", in, out, c.cc, opts...)
  78. if err != nil {
  79. return nil, err
  80. }
  81. return out, nil
  82. }
  83. // Server API for User service
  84. type UserServer interface {
  85. GetGrade(context.Context, *UserRequest) (*UserResponse, error)
  86. }
  87. func RegisterUserServer(s *grpc.Server, srv UserServer) {
  88. s.RegisterService(&_User_serviceDesc, srv)
  89. }
  90. func _User_GetGrade_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  91. in := new(UserRequest)
  92. if err := dec(in); err != nil {
  93. return nil, err
  94. }
  95. if interceptor == nil {
  96. return srv.(UserServer).GetGrade(ctx, in)
  97. }
  98. info := &grpc.UnaryServerInfo{
  99. Server: srv,
  100. FullMethod: "/user.User/GetGrade",
  101. }
  102. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  103. return srv.(UserServer).GetGrade(ctx, req.(*UserRequest))
  104. }
  105. return interceptor(ctx, in, info, handler)
  106. }
  107. var _User_serviceDesc = grpc.ServiceDesc{
  108. ServiceName: "user.User",
  109. HandlerType: (*UserServer)(nil),
  110. Methods: []grpc.MethodDesc{
  111. {
  112. MethodName: "GetGrade",
  113. Handler: _User_GetGrade_Handler,
  114. },
  115. },
  116. Streams: []grpc.StreamDesc{},
  117. Metadata: "user.proto",
  118. }
  119. func init() { proto.RegisterFile("user.proto", fileDescriptor0) }
  120. var fileDescriptor0 = []byte{
  121. // 131 bytes of a gzipped FileDescriptorProto
  122. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0xe2, 0x2a, 0x2d, 0x4e, 0x2d,
  123. 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x01, 0xb1, 0x95, 0x14, 0xb9, 0xb8, 0x43, 0x8b,
  124. 0x53, 0x8b, 0x82, 0x52, 0x0b, 0x4b, 0x53, 0x8b, 0x4b, 0x84, 0x84, 0xb8, 0x58, 0xf2, 0x12, 0x73,
  125. 0x53, 0x25, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0xc0, 0x6c, 0x25, 0x2d, 0x2e, 0x1e, 0x88, 0x92,
  126. 0xe2, 0x82, 0xfc, 0xbc, 0xe2, 0x54, 0x21, 0x29, 0x2e, 0x8e, 0x22, 0x28, 0x1b, 0xaa, 0x0e, 0xce,
  127. 0x37, 0xb2, 0xe4, 0x62, 0x01, 0xa9, 0x15, 0x32, 0xe4, 0xe2, 0x70, 0x4f, 0x2d, 0x71, 0x2f, 0x4a,
  128. 0x4c, 0x49, 0x15, 0x12, 0xd4, 0x03, 0xdb, 0x8a, 0x64, 0x8d, 0x94, 0x10, 0xb2, 0x10, 0x44, 0x6b,
  129. 0x12, 0x1b, 0xd8, 0x59, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x99, 0xfd, 0x8f, 0x70, 0xa4,
  130. 0x00, 0x00, 0x00,
  131. }