basics.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.1-devel
  4. // protoc v3.21.8
  5. // source: basics.proto
  6. package basics
  7. import (
  8. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. _ "google.golang.org/genproto/googleapis/api/annotations"
  10. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  11. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  12. emptypb "google.golang.org/protobuf/types/known/emptypb"
  13. reflect "reflect"
  14. sync "sync"
  15. )
  16. const (
  17. // Verify that this generated code is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  19. // Verify that runtime/protoimpl is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  21. )
  22. type BannerConfReply struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. IsOpen bool `protobuf:"varint,1,opt,name=isOpen,proto3" json:"isOpen"` // 是否开启
  27. LinkUrl string `protobuf:"bytes,2,opt,name=linkUrl,proto3" json:"linkUrl"` // 链接
  28. PictureUrl string `protobuf:"bytes,3,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 图片
  29. }
  30. func (x *BannerConfReply) Reset() {
  31. *x = BannerConfReply{}
  32. if protoimpl.UnsafeEnabled {
  33. mi := &file_basics_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. }
  38. func (x *BannerConfReply) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*BannerConfReply) ProtoMessage() {}
  42. func (x *BannerConfReply) ProtoReflect() protoreflect.Message {
  43. mi := &file_basics_proto_msgTypes[0]
  44. if protoimpl.UnsafeEnabled && x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use BannerConfReply.ProtoReflect.Descriptor instead.
  54. func (*BannerConfReply) Descriptor() ([]byte, []int) {
  55. return file_basics_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *BannerConfReply) GetIsOpen() bool {
  58. if x != nil {
  59. return x.IsOpen
  60. }
  61. return false
  62. }
  63. func (x *BannerConfReply) GetLinkUrl() string {
  64. if x != nil {
  65. return x.LinkUrl
  66. }
  67. return ""
  68. }
  69. func (x *BannerConfReply) GetPictureUrl() string {
  70. if x != nil {
  71. return x.PictureUrl
  72. }
  73. return ""
  74. }
  75. type RandomNicknameReply struct {
  76. state protoimpl.MessageState
  77. sizeCache protoimpl.SizeCache
  78. unknownFields protoimpl.UnknownFields
  79. Nickname string `protobuf:"bytes,1,opt,name=nickname,proto3" json:"nickname"`
  80. }
  81. func (x *RandomNicknameReply) Reset() {
  82. *x = RandomNicknameReply{}
  83. if protoimpl.UnsafeEnabled {
  84. mi := &file_basics_proto_msgTypes[1]
  85. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  86. ms.StoreMessageInfo(mi)
  87. }
  88. }
  89. func (x *RandomNicknameReply) String() string {
  90. return protoimpl.X.MessageStringOf(x)
  91. }
  92. func (*RandomNicknameReply) ProtoMessage() {}
  93. func (x *RandomNicknameReply) ProtoReflect() protoreflect.Message {
  94. mi := &file_basics_proto_msgTypes[1]
  95. if protoimpl.UnsafeEnabled && x != nil {
  96. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  97. if ms.LoadMessageInfo() == nil {
  98. ms.StoreMessageInfo(mi)
  99. }
  100. return ms
  101. }
  102. return mi.MessageOf(x)
  103. }
  104. // Deprecated: Use RandomNicknameReply.ProtoReflect.Descriptor instead.
  105. func (*RandomNicknameReply) Descriptor() ([]byte, []int) {
  106. return file_basics_proto_rawDescGZIP(), []int{1}
  107. }
  108. func (x *RandomNicknameReply) GetNickname() string {
  109. if x != nil {
  110. return x.Nickname
  111. }
  112. return ""
  113. }
  114. type RandomAvatarReply struct {
  115. state protoimpl.MessageState
  116. sizeCache protoimpl.SizeCache
  117. unknownFields protoimpl.UnknownFields
  118. AvatarUrl string `protobuf:"bytes,1,opt,name=avatarUrl,proto3" json:"avatarUrl"`
  119. }
  120. func (x *RandomAvatarReply) Reset() {
  121. *x = RandomAvatarReply{}
  122. if protoimpl.UnsafeEnabled {
  123. mi := &file_basics_proto_msgTypes[2]
  124. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  125. ms.StoreMessageInfo(mi)
  126. }
  127. }
  128. func (x *RandomAvatarReply) String() string {
  129. return protoimpl.X.MessageStringOf(x)
  130. }
  131. func (*RandomAvatarReply) ProtoMessage() {}
  132. func (x *RandomAvatarReply) ProtoReflect() protoreflect.Message {
  133. mi := &file_basics_proto_msgTypes[2]
  134. if protoimpl.UnsafeEnabled && x != nil {
  135. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  136. if ms.LoadMessageInfo() == nil {
  137. ms.StoreMessageInfo(mi)
  138. }
  139. return ms
  140. }
  141. return mi.MessageOf(x)
  142. }
  143. // Deprecated: Use RandomAvatarReply.ProtoReflect.Descriptor instead.
  144. func (*RandomAvatarReply) Descriptor() ([]byte, []int) {
  145. return file_basics_proto_rawDescGZIP(), []int{2}
  146. }
  147. func (x *RandomAvatarReply) GetAvatarUrl() string {
  148. if x != nil {
  149. return x.AvatarUrl
  150. }
  151. return ""
  152. }
  153. type RandomAvatarListReply struct {
  154. state protoimpl.MessageState
  155. sizeCache protoimpl.SizeCache
  156. unknownFields protoimpl.UnknownFields
  157. List []string `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  158. }
  159. func (x *RandomAvatarListReply) Reset() {
  160. *x = RandomAvatarListReply{}
  161. if protoimpl.UnsafeEnabled {
  162. mi := &file_basics_proto_msgTypes[3]
  163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  164. ms.StoreMessageInfo(mi)
  165. }
  166. }
  167. func (x *RandomAvatarListReply) String() string {
  168. return protoimpl.X.MessageStringOf(x)
  169. }
  170. func (*RandomAvatarListReply) ProtoMessage() {}
  171. func (x *RandomAvatarListReply) ProtoReflect() protoreflect.Message {
  172. mi := &file_basics_proto_msgTypes[3]
  173. if protoimpl.UnsafeEnabled && x != nil {
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. if ms.LoadMessageInfo() == nil {
  176. ms.StoreMessageInfo(mi)
  177. }
  178. return ms
  179. }
  180. return mi.MessageOf(x)
  181. }
  182. // Deprecated: Use RandomAvatarListReply.ProtoReflect.Descriptor instead.
  183. func (*RandomAvatarListReply) Descriptor() ([]byte, []int) {
  184. return file_basics_proto_rawDescGZIP(), []int{3}
  185. }
  186. func (x *RandomAvatarListReply) GetList() []string {
  187. if x != nil {
  188. return x.List
  189. }
  190. return make([]string, 0)
  191. }
  192. var File_basics_proto protoreflect.FileDescriptor
  193. var file_basics_proto_rawDesc = []byte{
  194. 0x0a, 0x0c, 0x62, 0x61, 0x73, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0a,
  195. 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x69, 0x63, 0x73, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67,
  196. 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f,
  197. 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  198. 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e,
  199. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  200. 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x63,
  201. 0x0a, 0x0f, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x70, 0x6c,
  202. 0x79, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
  203. 0x08, 0x52, 0x06, 0x69, 0x73, 0x4f, 0x70, 0x65, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69, 0x6e,
  204. 0x6b, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x69, 0x6e, 0x6b,
  205. 0x55, 0x72, 0x6c, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72,
  206. 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  207. 0x55, 0x72, 0x6c, 0x22, 0x31, 0x0a, 0x13, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69, 0x63,
  208. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  209. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  210. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x31, 0x0a, 0x11, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  211. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  212. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  213. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x22, 0x2b, 0x0a, 0x15, 0x52, 0x61, 0x6e,
  214. 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  215. 0x6c, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
  216. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x32, 0xb9, 0x07, 0x0a, 0x06, 0x42, 0x61, 0x73, 0x69, 0x63,
  217. 0x73, 0x12, 0x6d, 0x0a, 0x0e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69, 0x63, 0x6b, 0x6e,
  218. 0x61, 0x6d, 0x65, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  219. 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61,
  220. 0x73, 0x69, 0x63, 0x73, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x69, 0x63, 0x6b, 0x6e,
  221. 0x61, 0x6d, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20,
  222. 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61,
  223. 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x3a, 0x01, 0x2a,
  224. 0x12, 0x67, 0x0a, 0x0c, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  225. 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65,
  226. 0x78, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x69, 0x63,
  227. 0x73, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65,
  228. 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70,
  229. 0x69, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f,
  230. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0f, 0x52, 0x61, 0x6e,
  231. 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x12, 0x12, 0x2e, 0x61,
  232. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71,
  233. 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61,
  234. 0x6e, 0x64, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x52, 0x65, 0x70,
  235. 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  236. 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x2f, 0x69,
  237. 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0a, 0x42,
  238. 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  239. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  240. 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x69, 0x63, 0x73, 0x2e, 0x42,
  241. 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x30,
  242. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  243. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x6f,
  244. 0x75, 0x74, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x3a, 0x01, 0x2a,
  245. 0x12, 0x4b, 0x0a, 0x10, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72,
  246. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  247. 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x62,
  248. 0x61, 0x73, 0x69, 0x63, 0x73, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x41, 0x76, 0x61, 0x74,
  249. 0x61, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x40, 0x0a,
  250. 0x10, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65,
  251. 0x78, 0x12, 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53,
  252. 0x65, 0x78, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  253. 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12,
  254. 0x3a, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x54, 0x61, 0x67, 0x73, 0x42, 0x79, 0x49, 0x44, 0x73,
  255. 0x12, 0x0f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x64,
  256. 0x73, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54,
  257. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x41, 0x0a, 0x0e, 0x46,
  258. 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e,
  259. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52,
  260. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  261. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x4e,
  262. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12,
  263. 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e,
  264. 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  265. 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  266. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x00, 0x12, 0x41,
  267. 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61,
  268. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  269. 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  270. 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22,
  271. 0x00, 0x12, 0x4f, 0x0a, 0x12, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74,
  272. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  273. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e,
  274. 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  275. 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74,
  276. 0x22, 0x00, 0x42, 0x43, 0x0a, 0x0a, 0x61, 0x70, 0x69, 0x2e, 0x62, 0x61, 0x73, 0x69, 0x63, 0x73,
  277. 0x50, 0x01, 0x5a, 0x33, 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63,
  278. 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f,
  279. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x62, 0x61, 0x73, 0x69, 0x63, 0x73,
  280. 0x3b, 0x62, 0x61, 0x73, 0x69, 0x63, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  281. }
  282. var (
  283. file_basics_proto_rawDescOnce sync.Once
  284. file_basics_proto_rawDescData = file_basics_proto_rawDesc
  285. )
  286. func file_basics_proto_rawDescGZIP() []byte {
  287. file_basics_proto_rawDescOnce.Do(func() {
  288. file_basics_proto_rawDescData = protoimpl.X.CompressGZIP(file_basics_proto_rawDescData)
  289. })
  290. return file_basics_proto_rawDescData
  291. }
  292. var file_basics_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  293. var file_basics_proto_goTypes = []interface{}{
  294. (*BannerConfReply)(nil), // 0: api.basics.BannerConfReply
  295. (*RandomNicknameReply)(nil), // 1: api.basics.RandomNicknameReply
  296. (*RandomAvatarReply)(nil), // 2: api.basics.RandomAvatarReply
  297. (*RandomAvatarListReply)(nil), // 3: api.basics.RandomAvatarListReply
  298. (*common.SexReq)(nil), // 4: api.common.SexReq
  299. (*emptypb.Empty)(nil), // 5: google.protobuf.Empty
  300. (*common.Ids)(nil), // 6: api.common.Ids
  301. (*common.MemeRequest)(nil), // 7: api.common.MemeRequest
  302. (*common.FindChatTopicRequest)(nil), // 8: api.common.FindChatTopicRequest
  303. (*common.RandomNum)(nil), // 9: api.common.RandomNum
  304. (*common.RandomNumAndSex)(nil), // 10: api.common.RandomNumAndSex
  305. (*common.RandomIntroduceReply)(nil), // 11: api.common.RandomIntroduceReply
  306. (*common.TagListReply)(nil), // 12: api.common.TagListReply
  307. (*common.MemeList)(nil), // 13: api.common.MemeList
  308. (*common.ChatTopicList)(nil), // 14: api.common.ChatTopicList
  309. (*common.CommonTextList)(nil), // 15: api.common.CommonTextList
  310. }
  311. var file_basics_proto_depIdxs = []int32{
  312. 4, // 0: api.basics.Basics.RandomNickname:input_type -> api.common.SexReq
  313. 4, // 1: api.basics.Basics.RandomAvatar:input_type -> api.common.SexReq
  314. 4, // 2: api.basics.Basics.RandomIntroduce:input_type -> api.common.SexReq
  315. 5, // 3: api.basics.Basics.BannerConf:input_type -> google.protobuf.Empty
  316. 4, // 4: api.basics.Basics.RandomAvatarList:input_type -> api.common.SexReq
  317. 4, // 5: api.basics.Basics.FindTagListBySex:input_type -> api.common.SexReq
  318. 6, // 6: api.basics.Basics.FindTagsByIDs:input_type -> api.common.Ids
  319. 7, // 7: api.basics.Basics.FindMemeByType:input_type -> api.common.MemeRequest
  320. 8, // 8: api.basics.Basics.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  321. 9, // 9: api.basics.Basics.RandomMeme:input_type -> api.common.RandomNum
  322. 10, // 10: api.basics.Basics.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  323. 1, // 11: api.basics.Basics.RandomNickname:output_type -> api.basics.RandomNicknameReply
  324. 2, // 12: api.basics.Basics.RandomAvatar:output_type -> api.basics.RandomAvatarReply
  325. 11, // 13: api.basics.Basics.RandomIntroduce:output_type -> api.common.RandomIntroduceReply
  326. 0, // 14: api.basics.Basics.BannerConf:output_type -> api.basics.BannerConfReply
  327. 3, // 15: api.basics.Basics.RandomAvatarList:output_type -> api.basics.RandomAvatarListReply
  328. 12, // 16: api.basics.Basics.FindTagListBySex:output_type -> api.common.TagListReply
  329. 12, // 17: api.basics.Basics.FindTagsByIDs:output_type -> api.common.TagListReply
  330. 13, // 18: api.basics.Basics.FindMemeByType:output_type -> api.common.MemeList
  331. 14, // 19: api.basics.Basics.FindChatTopic:output_type -> api.common.ChatTopicList
  332. 15, // 20: api.basics.Basics.RandomMeme:output_type -> api.common.CommonTextList
  333. 15, // 21: api.basics.Basics.RandomSwiftMessage:output_type -> api.common.CommonTextList
  334. 11, // [11:22] is the sub-list for method output_type
  335. 0, // [0:11] is the sub-list for method input_type
  336. 0, // [0:0] is the sub-list for extension type_name
  337. 0, // [0:0] is the sub-list for extension extendee
  338. 0, // [0:0] is the sub-list for field type_name
  339. }
  340. func init() { file_basics_proto_init() }
  341. func file_basics_proto_init() {
  342. if File_basics_proto != nil {
  343. return
  344. }
  345. if !protoimpl.UnsafeEnabled {
  346. file_basics_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  347. switch v := v.(*BannerConfReply); i {
  348. case 0:
  349. return &v.state
  350. case 1:
  351. return &v.sizeCache
  352. case 2:
  353. return &v.unknownFields
  354. default:
  355. return nil
  356. }
  357. }
  358. file_basics_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  359. switch v := v.(*RandomNicknameReply); i {
  360. case 0:
  361. return &v.state
  362. case 1:
  363. return &v.sizeCache
  364. case 2:
  365. return &v.unknownFields
  366. default:
  367. return nil
  368. }
  369. }
  370. file_basics_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  371. switch v := v.(*RandomAvatarReply); i {
  372. case 0:
  373. return &v.state
  374. case 1:
  375. return &v.sizeCache
  376. case 2:
  377. return &v.unknownFields
  378. default:
  379. return nil
  380. }
  381. }
  382. file_basics_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  383. switch v := v.(*RandomAvatarListReply); i {
  384. case 0:
  385. return &v.state
  386. case 1:
  387. return &v.sizeCache
  388. case 2:
  389. return &v.unknownFields
  390. default:
  391. return nil
  392. }
  393. }
  394. }
  395. type x struct{}
  396. out := protoimpl.TypeBuilder{
  397. File: protoimpl.DescBuilder{
  398. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  399. RawDescriptor: file_basics_proto_rawDesc,
  400. NumEnums: 0,
  401. NumMessages: 4,
  402. NumExtensions: 0,
  403. NumServices: 1,
  404. },
  405. GoTypes: file_basics_proto_goTypes,
  406. DependencyIndexes: file_basics_proto_depIdxs,
  407. MessageInfos: file_basics_proto_msgTypes,
  408. }.Build()
  409. File_basics_proto = out.File
  410. file_basics_proto_rawDesc = nil
  411. file_basics_proto_goTypes = nil
  412. file_basics_proto_depIdxs = nil
  413. }