sso.pb.go 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.34.2
  4. // protoc v5.28.0--rc2
  5. // source: rpc/protos/sso.proto
  6. //protoc --go_out=. --go-grpc_out=. rpc/protos/sso.proto
  7. package sso
  8. import (
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. type LoginRequest struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  25. Source string `protobuf:"bytes,2,opt,name=source,proto3" json:"source,omitempty"`
  26. }
  27. func (x *LoginRequest) Reset() {
  28. *x = LoginRequest{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_rpc_protos_sso_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *LoginRequest) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*LoginRequest) ProtoMessage() {}
  39. func (x *LoginRequest) ProtoReflect() protoreflect.Message {
  40. mi := &file_rpc_protos_sso_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use LoginRequest.ProtoReflect.Descriptor instead.
  51. func (*LoginRequest) Descriptor() ([]byte, []int) {
  52. return file_rpc_protos_sso_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *LoginRequest) GetCode() string {
  55. if x != nil {
  56. return x.Code
  57. }
  58. return ""
  59. }
  60. func (x *LoginRequest) GetSource() string {
  61. if x != nil {
  62. return x.Source
  63. }
  64. return ""
  65. }
  66. type LoginResponse struct {
  67. state protoimpl.MessageState
  68. sizeCache protoimpl.SizeCache
  69. unknownFields protoimpl.UnknownFields
  70. Result string `protobuf:"bytes,1,opt,name=result,proto3" json:"result,omitempty"`
  71. }
  72. func (x *LoginResponse) Reset() {
  73. *x = LoginResponse{}
  74. if protoimpl.UnsafeEnabled {
  75. mi := &file_rpc_protos_sso_proto_msgTypes[1]
  76. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  77. ms.StoreMessageInfo(mi)
  78. }
  79. }
  80. func (x *LoginResponse) String() string {
  81. return protoimpl.X.MessageStringOf(x)
  82. }
  83. func (*LoginResponse) ProtoMessage() {}
  84. func (x *LoginResponse) ProtoReflect() protoreflect.Message {
  85. mi := &file_rpc_protos_sso_proto_msgTypes[1]
  86. if protoimpl.UnsafeEnabled && x != nil {
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. if ms.LoadMessageInfo() == nil {
  89. ms.StoreMessageInfo(mi)
  90. }
  91. return ms
  92. }
  93. return mi.MessageOf(x)
  94. }
  95. // Deprecated: Use LoginResponse.ProtoReflect.Descriptor instead.
  96. func (*LoginResponse) Descriptor() ([]byte, []int) {
  97. return file_rpc_protos_sso_proto_rawDescGZIP(), []int{1}
  98. }
  99. func (x *LoginResponse) GetResult() string {
  100. if x != nil {
  101. return x.Result
  102. }
  103. return ""
  104. }
  105. var File_rpc_protos_sso_proto protoreflect.FileDescriptor
  106. var file_rpc_protos_sso_proto_rawDesc = []byte{
  107. 0x0a, 0x14, 0x72, 0x70, 0x63, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x73, 0x73, 0x6f,
  108. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x03, 0x72, 0x70, 0x63, 0x22, 0x3a, 0x0a, 0x0c, 0x4c,
  109. 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x63,
  110. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12,
  111. 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  112. 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0x27, 0x0a, 0x0d, 0x4c, 0x6f, 0x67, 0x69, 0x6e,
  113. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75,
  114. 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
  115. 0x32, 0x3c, 0x0a, 0x08, 0x53, 0x53, 0x4f, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x30, 0x0a, 0x05,
  116. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x11, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x4c, 0x6f, 0x67, 0x69,
  117. 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x12, 0x2e, 0x72, 0x70, 0x63, 0x2e, 0x4c,
  118. 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0x10,
  119. 0x5a, 0x0e, 0x2e, 0x2f, 0x72, 0x70, 0x63, 0x2f, 0x73, 0x73, 0x6f, 0x2f, 0x3b, 0x73, 0x73, 0x6f,
  120. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  121. }
  122. var (
  123. file_rpc_protos_sso_proto_rawDescOnce sync.Once
  124. file_rpc_protos_sso_proto_rawDescData = file_rpc_protos_sso_proto_rawDesc
  125. )
  126. func file_rpc_protos_sso_proto_rawDescGZIP() []byte {
  127. file_rpc_protos_sso_proto_rawDescOnce.Do(func() {
  128. file_rpc_protos_sso_proto_rawDescData = protoimpl.X.CompressGZIP(file_rpc_protos_sso_proto_rawDescData)
  129. })
  130. return file_rpc_protos_sso_proto_rawDescData
  131. }
  132. var file_rpc_protos_sso_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  133. var file_rpc_protos_sso_proto_goTypes = []any{
  134. (*LoginRequest)(nil), // 0: rpc.LoginRequest
  135. (*LoginResponse)(nil), // 1: rpc.LoginResponse
  136. }
  137. var file_rpc_protos_sso_proto_depIdxs = []int32{
  138. 0, // 0: rpc.SSOLogin.Login:input_type -> rpc.LoginRequest
  139. 1, // 1: rpc.SSOLogin.Login:output_type -> rpc.LoginResponse
  140. 1, // [1:2] is the sub-list for method output_type
  141. 0, // [0:1] is the sub-list for method input_type
  142. 0, // [0:0] is the sub-list for extension type_name
  143. 0, // [0:0] is the sub-list for extension extendee
  144. 0, // [0:0] is the sub-list for field type_name
  145. }
  146. func init() { file_rpc_protos_sso_proto_init() }
  147. func file_rpc_protos_sso_proto_init() {
  148. if File_rpc_protos_sso_proto != nil {
  149. return
  150. }
  151. if !protoimpl.UnsafeEnabled {
  152. file_rpc_protos_sso_proto_msgTypes[0].Exporter = func(v any, i int) any {
  153. switch v := v.(*LoginRequest); i {
  154. case 0:
  155. return &v.state
  156. case 1:
  157. return &v.sizeCache
  158. case 2:
  159. return &v.unknownFields
  160. default:
  161. return nil
  162. }
  163. }
  164. file_rpc_protos_sso_proto_msgTypes[1].Exporter = func(v any, i int) any {
  165. switch v := v.(*LoginResponse); i {
  166. case 0:
  167. return &v.state
  168. case 1:
  169. return &v.sizeCache
  170. case 2:
  171. return &v.unknownFields
  172. default:
  173. return nil
  174. }
  175. }
  176. }
  177. type x struct{}
  178. out := protoimpl.TypeBuilder{
  179. File: protoimpl.DescBuilder{
  180. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  181. RawDescriptor: file_rpc_protos_sso_proto_rawDesc,
  182. NumEnums: 0,
  183. NumMessages: 2,
  184. NumExtensions: 0,
  185. NumServices: 1,
  186. },
  187. GoTypes: file_rpc_protos_sso_proto_goTypes,
  188. DependencyIndexes: file_rpc_protos_sso_proto_depIdxs,
  189. MessageInfos: file_rpc_protos_sso_proto_msgTypes,
  190. }.Build()
  191. File_rpc_protos_sso_proto = out.File
  192. file_rpc_protos_sso_proto_rawDesc = nil
  193. file_rpc_protos_sso_proto_goTypes = nil
  194. file_rpc_protos_sso_proto_depIdxs = nil
  195. }