slowwild.pb.go 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.34.2
  4. // protoc v3.19.4
  5. // source: proto/slowwild.proto
  6. package slowwildserver
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type UserEntity struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 用户id
  24. Avatar string `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"` // 用户头像
  25. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname,omitempty"` // 昵称
  26. Username string `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"` // 用户名(唯一)
  27. Phone string `protobuf:"bytes,5,opt,name=phone,proto3" json:"phone,omitempty"` // 手机号码
  28. Status int32 `protobuf:"varint,6,opt,name=status,proto3" json:"status,omitempty"` // 是否锁住1-正常2-停用
  29. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"` // 性别0-女1-男
  30. Follows int64 `protobuf:"varint,8,opt,name=follows,proto3" json:"follows,omitempty"` //粉丝
  31. Followings int64 `protobuf:"varint,9,opt,name=followings,proto3" json:"followings,omitempty"` // 关注量
  32. GetLikesCount int32 `protobuf:"varint,10,opt,name=get_likes_count,json=getLikesCount,proto3" json:"get_likes_count,omitempty"` //获得点赞数量
  33. GetCollectionCount int32 `protobuf:"varint,11,opt,name=get_collection_count,json=getCollectionCount,proto3" json:"get_collection_count,omitempty"` //获得收藏的数量
  34. }
  35. func (x *UserEntity) Reset() {
  36. *x = UserEntity{}
  37. if protoimpl.UnsafeEnabled {
  38. mi := &file_proto_slowwild_proto_msgTypes[0]
  39. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  40. ms.StoreMessageInfo(mi)
  41. }
  42. }
  43. func (x *UserEntity) String() string {
  44. return protoimpl.X.MessageStringOf(x)
  45. }
  46. func (*UserEntity) ProtoMessage() {}
  47. func (x *UserEntity) ProtoReflect() protoreflect.Message {
  48. mi := &file_proto_slowwild_proto_msgTypes[0]
  49. if protoimpl.UnsafeEnabled && x != nil {
  50. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  51. if ms.LoadMessageInfo() == nil {
  52. ms.StoreMessageInfo(mi)
  53. }
  54. return ms
  55. }
  56. return mi.MessageOf(x)
  57. }
  58. // Deprecated: Use UserEntity.ProtoReflect.Descriptor instead.
  59. func (*UserEntity) Descriptor() ([]byte, []int) {
  60. return file_proto_slowwild_proto_rawDescGZIP(), []int{0}
  61. }
  62. func (x *UserEntity) GetId() int64 {
  63. if x != nil {
  64. return x.Id
  65. }
  66. return 0
  67. }
  68. func (x *UserEntity) GetAvatar() string {
  69. if x != nil {
  70. return x.Avatar
  71. }
  72. return ""
  73. }
  74. func (x *UserEntity) GetNickname() string {
  75. if x != nil {
  76. return x.Nickname
  77. }
  78. return ""
  79. }
  80. func (x *UserEntity) GetUsername() string {
  81. if x != nil {
  82. return x.Username
  83. }
  84. return ""
  85. }
  86. func (x *UserEntity) GetPhone() string {
  87. if x != nil {
  88. return x.Phone
  89. }
  90. return ""
  91. }
  92. func (x *UserEntity) GetStatus() int32 {
  93. if x != nil {
  94. return x.Status
  95. }
  96. return 0
  97. }
  98. func (x *UserEntity) GetSex() int32 {
  99. if x != nil {
  100. return x.Sex
  101. }
  102. return 0
  103. }
  104. func (x *UserEntity) GetFollows() int64 {
  105. if x != nil {
  106. return x.Follows
  107. }
  108. return 0
  109. }
  110. func (x *UserEntity) GetFollowings() int64 {
  111. if x != nil {
  112. return x.Followings
  113. }
  114. return 0
  115. }
  116. func (x *UserEntity) GetGetLikesCount() int32 {
  117. if x != nil {
  118. return x.GetLikesCount
  119. }
  120. return 0
  121. }
  122. func (x *UserEntity) GetGetCollectionCount() int32 {
  123. if x != nil {
  124. return x.GetCollectionCount
  125. }
  126. return 0
  127. }
  128. type UserInfo struct {
  129. state protoimpl.MessageState
  130. sizeCache protoimpl.SizeCache
  131. unknownFields protoimpl.UnknownFields
  132. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 用户id
  133. Avatar string `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"` // 用户头像
  134. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname,omitempty"` // 昵称
  135. Sex int32 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex,omitempty"` // 性别0-女1-男
  136. }
  137. func (x *UserInfo) Reset() {
  138. *x = UserInfo{}
  139. if protoimpl.UnsafeEnabled {
  140. mi := &file_proto_slowwild_proto_msgTypes[1]
  141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  142. ms.StoreMessageInfo(mi)
  143. }
  144. }
  145. func (x *UserInfo) String() string {
  146. return protoimpl.X.MessageStringOf(x)
  147. }
  148. func (*UserInfo) ProtoMessage() {}
  149. func (x *UserInfo) ProtoReflect() protoreflect.Message {
  150. mi := &file_proto_slowwild_proto_msgTypes[1]
  151. if protoimpl.UnsafeEnabled && x != nil {
  152. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  153. if ms.LoadMessageInfo() == nil {
  154. ms.StoreMessageInfo(mi)
  155. }
  156. return ms
  157. }
  158. return mi.MessageOf(x)
  159. }
  160. // Deprecated: Use UserInfo.ProtoReflect.Descriptor instead.
  161. func (*UserInfo) Descriptor() ([]byte, []int) {
  162. return file_proto_slowwild_proto_rawDescGZIP(), []int{1}
  163. }
  164. func (x *UserInfo) GetId() int64 {
  165. if x != nil {
  166. return x.Id
  167. }
  168. return 0
  169. }
  170. func (x *UserInfo) GetAvatar() string {
  171. if x != nil {
  172. return x.Avatar
  173. }
  174. return ""
  175. }
  176. func (x *UserInfo) GetNickname() string {
  177. if x != nil {
  178. return x.Nickname
  179. }
  180. return ""
  181. }
  182. func (x *UserInfo) GetSex() int32 {
  183. if x != nil {
  184. return x.Sex
  185. }
  186. return 0
  187. }
  188. type FollowUserInfo struct {
  189. state protoimpl.MessageState
  190. sizeCache protoimpl.SizeCache
  191. unknownFields protoimpl.UnknownFields
  192. User *UserInfo `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
  193. IsMutualFollow bool `protobuf:"varint,2,opt,name=is_mutual_follow,json=isMutualFollow,proto3" json:"is_mutual_follow,omitempty"` // 是否互相关注
  194. }
  195. func (x *FollowUserInfo) Reset() {
  196. *x = FollowUserInfo{}
  197. if protoimpl.UnsafeEnabled {
  198. mi := &file_proto_slowwild_proto_msgTypes[2]
  199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  200. ms.StoreMessageInfo(mi)
  201. }
  202. }
  203. func (x *FollowUserInfo) String() string {
  204. return protoimpl.X.MessageStringOf(x)
  205. }
  206. func (*FollowUserInfo) ProtoMessage() {}
  207. func (x *FollowUserInfo) ProtoReflect() protoreflect.Message {
  208. mi := &file_proto_slowwild_proto_msgTypes[2]
  209. if protoimpl.UnsafeEnabled && x != nil {
  210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  211. if ms.LoadMessageInfo() == nil {
  212. ms.StoreMessageInfo(mi)
  213. }
  214. return ms
  215. }
  216. return mi.MessageOf(x)
  217. }
  218. // Deprecated: Use FollowUserInfo.ProtoReflect.Descriptor instead.
  219. func (*FollowUserInfo) Descriptor() ([]byte, []int) {
  220. return file_proto_slowwild_proto_rawDescGZIP(), []int{2}
  221. }
  222. func (x *FollowUserInfo) GetUser() *UserInfo {
  223. if x != nil {
  224. return x.User
  225. }
  226. return nil
  227. }
  228. func (x *FollowUserInfo) GetIsMutualFollow() bool {
  229. if x != nil {
  230. return x.IsMutualFollow
  231. }
  232. return false
  233. }
  234. type LoginAndRegisterRsp struct {
  235. state protoimpl.MessageState
  236. sizeCache protoimpl.SizeCache
  237. unknownFields protoimpl.UnknownFields
  238. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` // token令牌
  239. Expire int64 `protobuf:"varint,2,opt,name=expire,proto3" json:"expire,omitempty"` // 到期时间
  240. }
  241. func (x *LoginAndRegisterRsp) Reset() {
  242. *x = LoginAndRegisterRsp{}
  243. if protoimpl.UnsafeEnabled {
  244. mi := &file_proto_slowwild_proto_msgTypes[3]
  245. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  246. ms.StoreMessageInfo(mi)
  247. }
  248. }
  249. func (x *LoginAndRegisterRsp) String() string {
  250. return protoimpl.X.MessageStringOf(x)
  251. }
  252. func (*LoginAndRegisterRsp) ProtoMessage() {}
  253. func (x *LoginAndRegisterRsp) ProtoReflect() protoreflect.Message {
  254. mi := &file_proto_slowwild_proto_msgTypes[3]
  255. if protoimpl.UnsafeEnabled && x != nil {
  256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  257. if ms.LoadMessageInfo() == nil {
  258. ms.StoreMessageInfo(mi)
  259. }
  260. return ms
  261. }
  262. return mi.MessageOf(x)
  263. }
  264. // Deprecated: Use LoginAndRegisterRsp.ProtoReflect.Descriptor instead.
  265. func (*LoginAndRegisterRsp) Descriptor() ([]byte, []int) {
  266. return file_proto_slowwild_proto_rawDescGZIP(), []int{3}
  267. }
  268. func (x *LoginAndRegisterRsp) GetToken() string {
  269. if x != nil {
  270. return x.Token
  271. }
  272. return ""
  273. }
  274. func (x *LoginAndRegisterRsp) GetExpire() int64 {
  275. if x != nil {
  276. return x.Expire
  277. }
  278. return 0
  279. }
  280. type LoginReq struct {
  281. state protoimpl.MessageState
  282. sizeCache protoimpl.SizeCache
  283. unknownFields protoimpl.UnknownFields
  284. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"` //手机号
  285. Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` // 密码
  286. Code string `protobuf:"bytes,3,opt,name=code,proto3" json:"code,omitempty"` //验证码
  287. LoginType int32 `protobuf:"varint,4,opt,name=login_type,json=loginType,proto3" json:"login_type,omitempty"` // 登录类型
  288. }
  289. func (x *LoginReq) Reset() {
  290. *x = LoginReq{}
  291. if protoimpl.UnsafeEnabled {
  292. mi := &file_proto_slowwild_proto_msgTypes[4]
  293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  294. ms.StoreMessageInfo(mi)
  295. }
  296. }
  297. func (x *LoginReq) String() string {
  298. return protoimpl.X.MessageStringOf(x)
  299. }
  300. func (*LoginReq) ProtoMessage() {}
  301. func (x *LoginReq) ProtoReflect() protoreflect.Message {
  302. mi := &file_proto_slowwild_proto_msgTypes[4]
  303. if protoimpl.UnsafeEnabled && x != nil {
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. if ms.LoadMessageInfo() == nil {
  306. ms.StoreMessageInfo(mi)
  307. }
  308. return ms
  309. }
  310. return mi.MessageOf(x)
  311. }
  312. // Deprecated: Use LoginReq.ProtoReflect.Descriptor instead.
  313. func (*LoginReq) Descriptor() ([]byte, []int) {
  314. return file_proto_slowwild_proto_rawDescGZIP(), []int{4}
  315. }
  316. func (x *LoginReq) GetPhone() string {
  317. if x != nil {
  318. return x.Phone
  319. }
  320. return ""
  321. }
  322. func (x *LoginReq) GetPassword() string {
  323. if x != nil {
  324. return x.Password
  325. }
  326. return ""
  327. }
  328. func (x *LoginReq) GetCode() string {
  329. if x != nil {
  330. return x.Code
  331. }
  332. return ""
  333. }
  334. func (x *LoginReq) GetLoginType() int32 {
  335. if x != nil {
  336. return x.LoginType
  337. }
  338. return 0
  339. }
  340. type RegisterReq struct {
  341. state protoimpl.MessageState
  342. sizeCache protoimpl.SizeCache
  343. unknownFields protoimpl.UnknownFields
  344. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"` // 手机号码
  345. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"` // 用户昵称
  346. Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"` // 密码
  347. Avatar string `protobuf:"bytes,4,opt,name=avatar,proto3" json:"avatar,omitempty"` // 头像
  348. Sex int32 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex,omitempty"` // 性别
  349. Username string `protobuf:"bytes,6,opt,name=username,proto3" json:"username,omitempty"` // 用户名(唯一)
  350. }
  351. func (x *RegisterReq) Reset() {
  352. *x = RegisterReq{}
  353. if protoimpl.UnsafeEnabled {
  354. mi := &file_proto_slowwild_proto_msgTypes[5]
  355. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  356. ms.StoreMessageInfo(mi)
  357. }
  358. }
  359. func (x *RegisterReq) String() string {
  360. return protoimpl.X.MessageStringOf(x)
  361. }
  362. func (*RegisterReq) ProtoMessage() {}
  363. func (x *RegisterReq) ProtoReflect() protoreflect.Message {
  364. mi := &file_proto_slowwild_proto_msgTypes[5]
  365. if protoimpl.UnsafeEnabled && x != nil {
  366. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  367. if ms.LoadMessageInfo() == nil {
  368. ms.StoreMessageInfo(mi)
  369. }
  370. return ms
  371. }
  372. return mi.MessageOf(x)
  373. }
  374. // Deprecated: Use RegisterReq.ProtoReflect.Descriptor instead.
  375. func (*RegisterReq) Descriptor() ([]byte, []int) {
  376. return file_proto_slowwild_proto_rawDescGZIP(), []int{5}
  377. }
  378. func (x *RegisterReq) GetPhone() string {
  379. if x != nil {
  380. return x.Phone
  381. }
  382. return ""
  383. }
  384. func (x *RegisterReq) GetNickname() string {
  385. if x != nil {
  386. return x.Nickname
  387. }
  388. return ""
  389. }
  390. func (x *RegisterReq) GetPassword() string {
  391. if x != nil {
  392. return x.Password
  393. }
  394. return ""
  395. }
  396. func (x *RegisterReq) GetAvatar() string {
  397. if x != nil {
  398. return x.Avatar
  399. }
  400. return ""
  401. }
  402. func (x *RegisterReq) GetSex() int32 {
  403. if x != nil {
  404. return x.Sex
  405. }
  406. return 0
  407. }
  408. func (x *RegisterReq) GetUsername() string {
  409. if x != nil {
  410. return x.Username
  411. }
  412. return ""
  413. }
  414. type GetUserInfoReq struct {
  415. state protoimpl.MessageState
  416. sizeCache protoimpl.SizeCache
  417. unknownFields protoimpl.UnknownFields
  418. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 用户id
  419. QueryUserId int64 `protobuf:"varint,2,opt,name=query_user_id,json=queryUserId,proto3" json:"query_user_id,omitempty"` // 查询用户id
  420. }
  421. func (x *GetUserInfoReq) Reset() {
  422. *x = GetUserInfoReq{}
  423. if protoimpl.UnsafeEnabled {
  424. mi := &file_proto_slowwild_proto_msgTypes[6]
  425. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  426. ms.StoreMessageInfo(mi)
  427. }
  428. }
  429. func (x *GetUserInfoReq) String() string {
  430. return protoimpl.X.MessageStringOf(x)
  431. }
  432. func (*GetUserInfoReq) ProtoMessage() {}
  433. func (x *GetUserInfoReq) ProtoReflect() protoreflect.Message {
  434. mi := &file_proto_slowwild_proto_msgTypes[6]
  435. if protoimpl.UnsafeEnabled && x != nil {
  436. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  437. if ms.LoadMessageInfo() == nil {
  438. ms.StoreMessageInfo(mi)
  439. }
  440. return ms
  441. }
  442. return mi.MessageOf(x)
  443. }
  444. // Deprecated: Use GetUserInfoReq.ProtoReflect.Descriptor instead.
  445. func (*GetUserInfoReq) Descriptor() ([]byte, []int) {
  446. return file_proto_slowwild_proto_rawDescGZIP(), []int{6}
  447. }
  448. func (x *GetUserInfoReq) GetUserId() int64 {
  449. if x != nil {
  450. return x.UserId
  451. }
  452. return 0
  453. }
  454. func (x *GetUserInfoReq) GetQueryUserId() int64 {
  455. if x != nil {
  456. return x.QueryUserId
  457. }
  458. return 0
  459. }
  460. type GetUserInfoResp struct {
  461. state protoimpl.MessageState
  462. sizeCache protoimpl.SizeCache
  463. unknownFields protoimpl.UnknownFields
  464. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 用户id
  465. Avatar string `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"` // 用户头像
  466. Nickname string `protobuf:"bytes,3,opt,name=nickname,proto3" json:"nickname,omitempty"` // 昵称
  467. Sex int32 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex,omitempty"` // 性别0-女1-男
  468. IsFollow bool `protobuf:"varint,5,opt,name=is_follow,json=isFollow,proto3" json:"is_follow,omitempty"` // 是否关注
  469. }
  470. func (x *GetUserInfoResp) Reset() {
  471. *x = GetUserInfoResp{}
  472. if protoimpl.UnsafeEnabled {
  473. mi := &file_proto_slowwild_proto_msgTypes[7]
  474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  475. ms.StoreMessageInfo(mi)
  476. }
  477. }
  478. func (x *GetUserInfoResp) String() string {
  479. return protoimpl.X.MessageStringOf(x)
  480. }
  481. func (*GetUserInfoResp) ProtoMessage() {}
  482. func (x *GetUserInfoResp) ProtoReflect() protoreflect.Message {
  483. mi := &file_proto_slowwild_proto_msgTypes[7]
  484. if protoimpl.UnsafeEnabled && x != nil {
  485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  486. if ms.LoadMessageInfo() == nil {
  487. ms.StoreMessageInfo(mi)
  488. }
  489. return ms
  490. }
  491. return mi.MessageOf(x)
  492. }
  493. // Deprecated: Use GetUserInfoResp.ProtoReflect.Descriptor instead.
  494. func (*GetUserInfoResp) Descriptor() ([]byte, []int) {
  495. return file_proto_slowwild_proto_rawDescGZIP(), []int{7}
  496. }
  497. func (x *GetUserInfoResp) GetId() int64 {
  498. if x != nil {
  499. return x.Id
  500. }
  501. return 0
  502. }
  503. func (x *GetUserInfoResp) GetAvatar() string {
  504. if x != nil {
  505. return x.Avatar
  506. }
  507. return ""
  508. }
  509. func (x *GetUserInfoResp) GetNickname() string {
  510. if x != nil {
  511. return x.Nickname
  512. }
  513. return ""
  514. }
  515. func (x *GetUserInfoResp) GetSex() int32 {
  516. if x != nil {
  517. return x.Sex
  518. }
  519. return 0
  520. }
  521. func (x *GetUserInfoResp) GetIsFollow() bool {
  522. if x != nil {
  523. return x.IsFollow
  524. }
  525. return false
  526. }
  527. type FindUserReq struct {
  528. state protoimpl.MessageState
  529. sizeCache protoimpl.SizeCache
  530. unknownFields protoimpl.UnknownFields
  531. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` // 用户昵称
  532. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` // 用户手机号码
  533. Ids []int64 `protobuf:"varint,3,rep,packed,name=ids,proto3" json:"ids,omitempty"` // 用户id
  534. }
  535. func (x *FindUserReq) Reset() {
  536. *x = FindUserReq{}
  537. if protoimpl.UnsafeEnabled {
  538. mi := &file_proto_slowwild_proto_msgTypes[8]
  539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  540. ms.StoreMessageInfo(mi)
  541. }
  542. }
  543. func (x *FindUserReq) String() string {
  544. return protoimpl.X.MessageStringOf(x)
  545. }
  546. func (*FindUserReq) ProtoMessage() {}
  547. func (x *FindUserReq) ProtoReflect() protoreflect.Message {
  548. mi := &file_proto_slowwild_proto_msgTypes[8]
  549. if protoimpl.UnsafeEnabled && x != nil {
  550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  551. if ms.LoadMessageInfo() == nil {
  552. ms.StoreMessageInfo(mi)
  553. }
  554. return ms
  555. }
  556. return mi.MessageOf(x)
  557. }
  558. // Deprecated: Use FindUserReq.ProtoReflect.Descriptor instead.
  559. func (*FindUserReq) Descriptor() ([]byte, []int) {
  560. return file_proto_slowwild_proto_rawDescGZIP(), []int{8}
  561. }
  562. func (x *FindUserReq) GetUsername() string {
  563. if x != nil {
  564. return x.Username
  565. }
  566. return ""
  567. }
  568. func (x *FindUserReq) GetPhone() string {
  569. if x != nil {
  570. return x.Phone
  571. }
  572. return ""
  573. }
  574. func (x *FindUserReq) GetIds() []int64 {
  575. if x != nil {
  576. return x.Ids
  577. }
  578. return nil
  579. }
  580. type FindUserResp struct {
  581. state protoimpl.MessageState
  582. sizeCache protoimpl.SizeCache
  583. unknownFields protoimpl.UnknownFields
  584. UserList []*UserInfo `protobuf:"bytes,1,rep,name=user_list,json=userList,proto3" json:"user_list,omitempty"` // 用户信息
  585. }
  586. func (x *FindUserResp) Reset() {
  587. *x = FindUserResp{}
  588. if protoimpl.UnsafeEnabled {
  589. mi := &file_proto_slowwild_proto_msgTypes[9]
  590. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  591. ms.StoreMessageInfo(mi)
  592. }
  593. }
  594. func (x *FindUserResp) String() string {
  595. return protoimpl.X.MessageStringOf(x)
  596. }
  597. func (*FindUserResp) ProtoMessage() {}
  598. func (x *FindUserResp) ProtoReflect() protoreflect.Message {
  599. mi := &file_proto_slowwild_proto_msgTypes[9]
  600. if protoimpl.UnsafeEnabled && x != nil {
  601. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  602. if ms.LoadMessageInfo() == nil {
  603. ms.StoreMessageInfo(mi)
  604. }
  605. return ms
  606. }
  607. return mi.MessageOf(x)
  608. }
  609. // Deprecated: Use FindUserResp.ProtoReflect.Descriptor instead.
  610. func (*FindUserResp) Descriptor() ([]byte, []int) {
  611. return file_proto_slowwild_proto_rawDescGZIP(), []int{9}
  612. }
  613. func (x *FindUserResp) GetUserList() []*UserInfo {
  614. if x != nil {
  615. return x.UserList
  616. }
  617. return nil
  618. }
  619. // 用户关注
  620. type FollowUserReq struct {
  621. state protoimpl.MessageState
  622. sizeCache protoimpl.SizeCache
  623. unknownFields protoimpl.UnknownFields
  624. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录用户id
  625. FollowUserId int64 `protobuf:"varint,2,opt,name=follow_user_id,json=followUserId,proto3" json:"follow_user_id,omitempty"` // 被关注的用户id
  626. }
  627. func (x *FollowUserReq) Reset() {
  628. *x = FollowUserReq{}
  629. if protoimpl.UnsafeEnabled {
  630. mi := &file_proto_slowwild_proto_msgTypes[10]
  631. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  632. ms.StoreMessageInfo(mi)
  633. }
  634. }
  635. func (x *FollowUserReq) String() string {
  636. return protoimpl.X.MessageStringOf(x)
  637. }
  638. func (*FollowUserReq) ProtoMessage() {}
  639. func (x *FollowUserReq) ProtoReflect() protoreflect.Message {
  640. mi := &file_proto_slowwild_proto_msgTypes[10]
  641. if protoimpl.UnsafeEnabled && x != nil {
  642. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  643. if ms.LoadMessageInfo() == nil {
  644. ms.StoreMessageInfo(mi)
  645. }
  646. return ms
  647. }
  648. return mi.MessageOf(x)
  649. }
  650. // Deprecated: Use FollowUserReq.ProtoReflect.Descriptor instead.
  651. func (*FollowUserReq) Descriptor() ([]byte, []int) {
  652. return file_proto_slowwild_proto_rawDescGZIP(), []int{10}
  653. }
  654. func (x *FollowUserReq) GetUserId() int64 {
  655. if x != nil {
  656. return x.UserId
  657. }
  658. return 0
  659. }
  660. func (x *FollowUserReq) GetFollowUserId() int64 {
  661. if x != nil {
  662. return x.FollowUserId
  663. }
  664. return 0
  665. }
  666. type FollowUserRes struct {
  667. state protoimpl.MessageState
  668. sizeCache protoimpl.SizeCache
  669. unknownFields protoimpl.UnknownFields
  670. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` // 是否关注成功
  671. }
  672. func (x *FollowUserRes) Reset() {
  673. *x = FollowUserRes{}
  674. if protoimpl.UnsafeEnabled {
  675. mi := &file_proto_slowwild_proto_msgTypes[11]
  676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  677. ms.StoreMessageInfo(mi)
  678. }
  679. }
  680. func (x *FollowUserRes) String() string {
  681. return protoimpl.X.MessageStringOf(x)
  682. }
  683. func (*FollowUserRes) ProtoMessage() {}
  684. func (x *FollowUserRes) ProtoReflect() protoreflect.Message {
  685. mi := &file_proto_slowwild_proto_msgTypes[11]
  686. if protoimpl.UnsafeEnabled && x != nil {
  687. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  688. if ms.LoadMessageInfo() == nil {
  689. ms.StoreMessageInfo(mi)
  690. }
  691. return ms
  692. }
  693. return mi.MessageOf(x)
  694. }
  695. // Deprecated: Use FollowUserRes.ProtoReflect.Descriptor instead.
  696. func (*FollowUserRes) Descriptor() ([]byte, []int) {
  697. return file_proto_slowwild_proto_rawDescGZIP(), []int{11}
  698. }
  699. func (x *FollowUserRes) GetSuccess() bool {
  700. if x != nil {
  701. return x.Success
  702. }
  703. return false
  704. }
  705. // 用户取消关注
  706. type UnFollowUserReq struct {
  707. state protoimpl.MessageState
  708. sizeCache protoimpl.SizeCache
  709. unknownFields protoimpl.UnknownFields
  710. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录的用户id
  711. UnFollowUserId int64 `protobuf:"varint,2,opt,name=un_follow_user_id,json=unFollowUserId,proto3" json:"un_follow_user_id,omitempty"` // 当前被取消关注的用户id
  712. }
  713. func (x *UnFollowUserReq) Reset() {
  714. *x = UnFollowUserReq{}
  715. if protoimpl.UnsafeEnabled {
  716. mi := &file_proto_slowwild_proto_msgTypes[12]
  717. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  718. ms.StoreMessageInfo(mi)
  719. }
  720. }
  721. func (x *UnFollowUserReq) String() string {
  722. return protoimpl.X.MessageStringOf(x)
  723. }
  724. func (*UnFollowUserReq) ProtoMessage() {}
  725. func (x *UnFollowUserReq) ProtoReflect() protoreflect.Message {
  726. mi := &file_proto_slowwild_proto_msgTypes[12]
  727. if protoimpl.UnsafeEnabled && x != nil {
  728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  729. if ms.LoadMessageInfo() == nil {
  730. ms.StoreMessageInfo(mi)
  731. }
  732. return ms
  733. }
  734. return mi.MessageOf(x)
  735. }
  736. // Deprecated: Use UnFollowUserReq.ProtoReflect.Descriptor instead.
  737. func (*UnFollowUserReq) Descriptor() ([]byte, []int) {
  738. return file_proto_slowwild_proto_rawDescGZIP(), []int{12}
  739. }
  740. func (x *UnFollowUserReq) GetUserId() int64 {
  741. if x != nil {
  742. return x.UserId
  743. }
  744. return 0
  745. }
  746. func (x *UnFollowUserReq) GetUnFollowUserId() int64 {
  747. if x != nil {
  748. return x.UnFollowUserId
  749. }
  750. return 0
  751. }
  752. type UnFollowUserRes struct {
  753. state protoimpl.MessageState
  754. sizeCache protoimpl.SizeCache
  755. unknownFields protoimpl.UnknownFields
  756. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` // 是否关注成功
  757. }
  758. func (x *UnFollowUserRes) Reset() {
  759. *x = UnFollowUserRes{}
  760. if protoimpl.UnsafeEnabled {
  761. mi := &file_proto_slowwild_proto_msgTypes[13]
  762. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  763. ms.StoreMessageInfo(mi)
  764. }
  765. }
  766. func (x *UnFollowUserRes) String() string {
  767. return protoimpl.X.MessageStringOf(x)
  768. }
  769. func (*UnFollowUserRes) ProtoMessage() {}
  770. func (x *UnFollowUserRes) ProtoReflect() protoreflect.Message {
  771. mi := &file_proto_slowwild_proto_msgTypes[13]
  772. if protoimpl.UnsafeEnabled && x != nil {
  773. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  774. if ms.LoadMessageInfo() == nil {
  775. ms.StoreMessageInfo(mi)
  776. }
  777. return ms
  778. }
  779. return mi.MessageOf(x)
  780. }
  781. // Deprecated: Use UnFollowUserRes.ProtoReflect.Descriptor instead.
  782. func (*UnFollowUserRes) Descriptor() ([]byte, []int) {
  783. return file_proto_slowwild_proto_rawDescGZIP(), []int{13}
  784. }
  785. func (x *UnFollowUserRes) GetSuccess() bool {
  786. if x != nil {
  787. return x.Success
  788. }
  789. return false
  790. }
  791. // 查询粉丝列表
  792. type GetFollowingReq struct {
  793. state protoimpl.MessageState
  794. sizeCache protoimpl.SizeCache
  795. unknownFields protoimpl.UnknownFields
  796. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录用户的id
  797. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // 数量限制
  798. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"` // 分页开始偏移量
  799. QueryUserId int64 `protobuf:"varint,4,opt,name=query_user_id,json=queryUserId,proto3" json:"query_user_id,omitempty"` // 查询用户的id
  800. }
  801. func (x *GetFollowingReq) Reset() {
  802. *x = GetFollowingReq{}
  803. if protoimpl.UnsafeEnabled {
  804. mi := &file_proto_slowwild_proto_msgTypes[14]
  805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  806. ms.StoreMessageInfo(mi)
  807. }
  808. }
  809. func (x *GetFollowingReq) String() string {
  810. return protoimpl.X.MessageStringOf(x)
  811. }
  812. func (*GetFollowingReq) ProtoMessage() {}
  813. func (x *GetFollowingReq) ProtoReflect() protoreflect.Message {
  814. mi := &file_proto_slowwild_proto_msgTypes[14]
  815. if protoimpl.UnsafeEnabled && x != nil {
  816. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  817. if ms.LoadMessageInfo() == nil {
  818. ms.StoreMessageInfo(mi)
  819. }
  820. return ms
  821. }
  822. return mi.MessageOf(x)
  823. }
  824. // Deprecated: Use GetFollowingReq.ProtoReflect.Descriptor instead.
  825. func (*GetFollowingReq) Descriptor() ([]byte, []int) {
  826. return file_proto_slowwild_proto_rawDescGZIP(), []int{14}
  827. }
  828. func (x *GetFollowingReq) GetUserId() int64 {
  829. if x != nil {
  830. return x.UserId
  831. }
  832. return 0
  833. }
  834. func (x *GetFollowingReq) GetPageSize() int32 {
  835. if x != nil {
  836. return x.PageSize
  837. }
  838. return 0
  839. }
  840. func (x *GetFollowingReq) GetPage() int32 {
  841. if x != nil {
  842. return x.Page
  843. }
  844. return 0
  845. }
  846. func (x *GetFollowingReq) GetQueryUserId() int64 {
  847. if x != nil {
  848. return x.QueryUserId
  849. }
  850. return 0
  851. }
  852. type GetFollowingRes struct {
  853. state protoimpl.MessageState
  854. sizeCache protoimpl.SizeCache
  855. unknownFields protoimpl.UnknownFields
  856. List []*FollowUserInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  857. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  858. }
  859. func (x *GetFollowingRes) Reset() {
  860. *x = GetFollowingRes{}
  861. if protoimpl.UnsafeEnabled {
  862. mi := &file_proto_slowwild_proto_msgTypes[15]
  863. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  864. ms.StoreMessageInfo(mi)
  865. }
  866. }
  867. func (x *GetFollowingRes) String() string {
  868. return protoimpl.X.MessageStringOf(x)
  869. }
  870. func (*GetFollowingRes) ProtoMessage() {}
  871. func (x *GetFollowingRes) ProtoReflect() protoreflect.Message {
  872. mi := &file_proto_slowwild_proto_msgTypes[15]
  873. if protoimpl.UnsafeEnabled && x != nil {
  874. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  875. if ms.LoadMessageInfo() == nil {
  876. ms.StoreMessageInfo(mi)
  877. }
  878. return ms
  879. }
  880. return mi.MessageOf(x)
  881. }
  882. // Deprecated: Use GetFollowingRes.ProtoReflect.Descriptor instead.
  883. func (*GetFollowingRes) Descriptor() ([]byte, []int) {
  884. return file_proto_slowwild_proto_rawDescGZIP(), []int{15}
  885. }
  886. func (x *GetFollowingRes) GetList() []*FollowUserInfo {
  887. if x != nil {
  888. return x.List
  889. }
  890. return nil
  891. }
  892. func (x *GetFollowingRes) GetTotal() int64 {
  893. if x != nil {
  894. return x.Total
  895. }
  896. return 0
  897. }
  898. // 查询我关注的列表
  899. type GetFollowReq struct {
  900. state protoimpl.MessageState
  901. sizeCache protoimpl.SizeCache
  902. unknownFields protoimpl.UnknownFields
  903. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录用户的id
  904. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // 数量限制
  905. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"` // 分页开始偏移量
  906. QueryUserId int64 `protobuf:"varint,4,opt,name=query_user_id,json=queryUserId,proto3" json:"query_user_id,omitempty"` // 查询用户的id
  907. }
  908. func (x *GetFollowReq) Reset() {
  909. *x = GetFollowReq{}
  910. if protoimpl.UnsafeEnabled {
  911. mi := &file_proto_slowwild_proto_msgTypes[16]
  912. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  913. ms.StoreMessageInfo(mi)
  914. }
  915. }
  916. func (x *GetFollowReq) String() string {
  917. return protoimpl.X.MessageStringOf(x)
  918. }
  919. func (*GetFollowReq) ProtoMessage() {}
  920. func (x *GetFollowReq) ProtoReflect() protoreflect.Message {
  921. mi := &file_proto_slowwild_proto_msgTypes[16]
  922. if protoimpl.UnsafeEnabled && x != nil {
  923. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  924. if ms.LoadMessageInfo() == nil {
  925. ms.StoreMessageInfo(mi)
  926. }
  927. return ms
  928. }
  929. return mi.MessageOf(x)
  930. }
  931. // Deprecated: Use GetFollowReq.ProtoReflect.Descriptor instead.
  932. func (*GetFollowReq) Descriptor() ([]byte, []int) {
  933. return file_proto_slowwild_proto_rawDescGZIP(), []int{16}
  934. }
  935. func (x *GetFollowReq) GetUserId() int64 {
  936. if x != nil {
  937. return x.UserId
  938. }
  939. return 0
  940. }
  941. func (x *GetFollowReq) GetPageSize() int32 {
  942. if x != nil {
  943. return x.PageSize
  944. }
  945. return 0
  946. }
  947. func (x *GetFollowReq) GetPage() int32 {
  948. if x != nil {
  949. return x.Page
  950. }
  951. return 0
  952. }
  953. func (x *GetFollowReq) GetQueryUserId() int64 {
  954. if x != nil {
  955. return x.QueryUserId
  956. }
  957. return 0
  958. }
  959. type GetFollowRes struct {
  960. state protoimpl.MessageState
  961. sizeCache protoimpl.SizeCache
  962. unknownFields protoimpl.UnknownFields
  963. List []*FollowUserInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  964. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  965. }
  966. func (x *GetFollowRes) Reset() {
  967. *x = GetFollowRes{}
  968. if protoimpl.UnsafeEnabled {
  969. mi := &file_proto_slowwild_proto_msgTypes[17]
  970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  971. ms.StoreMessageInfo(mi)
  972. }
  973. }
  974. func (x *GetFollowRes) String() string {
  975. return protoimpl.X.MessageStringOf(x)
  976. }
  977. func (*GetFollowRes) ProtoMessage() {}
  978. func (x *GetFollowRes) ProtoReflect() protoreflect.Message {
  979. mi := &file_proto_slowwild_proto_msgTypes[17]
  980. if protoimpl.UnsafeEnabled && x != nil {
  981. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  982. if ms.LoadMessageInfo() == nil {
  983. ms.StoreMessageInfo(mi)
  984. }
  985. return ms
  986. }
  987. return mi.MessageOf(x)
  988. }
  989. // Deprecated: Use GetFollowRes.ProtoReflect.Descriptor instead.
  990. func (*GetFollowRes) Descriptor() ([]byte, []int) {
  991. return file_proto_slowwild_proto_rawDescGZIP(), []int{17}
  992. }
  993. func (x *GetFollowRes) GetList() []*FollowUserInfo {
  994. if x != nil {
  995. return x.List
  996. }
  997. return nil
  998. }
  999. func (x *GetFollowRes) GetTotal() int64 {
  1000. if x != nil {
  1001. return x.Total
  1002. }
  1003. return 0
  1004. }
  1005. // 查询用户信息
  1006. type GetUserProfileReq struct {
  1007. state protoimpl.MessageState
  1008. sizeCache protoimpl.SizeCache
  1009. unknownFields protoimpl.UnknownFields
  1010. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1011. }
  1012. func (x *GetUserProfileReq) Reset() {
  1013. *x = GetUserProfileReq{}
  1014. if protoimpl.UnsafeEnabled {
  1015. mi := &file_proto_slowwild_proto_msgTypes[18]
  1016. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1017. ms.StoreMessageInfo(mi)
  1018. }
  1019. }
  1020. func (x *GetUserProfileReq) String() string {
  1021. return protoimpl.X.MessageStringOf(x)
  1022. }
  1023. func (*GetUserProfileReq) ProtoMessage() {}
  1024. func (x *GetUserProfileReq) ProtoReflect() protoreflect.Message {
  1025. mi := &file_proto_slowwild_proto_msgTypes[18]
  1026. if protoimpl.UnsafeEnabled && x != nil {
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. if ms.LoadMessageInfo() == nil {
  1029. ms.StoreMessageInfo(mi)
  1030. }
  1031. return ms
  1032. }
  1033. return mi.MessageOf(x)
  1034. }
  1035. // Deprecated: Use GetUserProfileReq.ProtoReflect.Descriptor instead.
  1036. func (*GetUserProfileReq) Descriptor() ([]byte, []int) {
  1037. return file_proto_slowwild_proto_rawDescGZIP(), []int{18}
  1038. }
  1039. func (x *GetUserProfileReq) GetUserId() int64 {
  1040. if x != nil {
  1041. return x.UserId
  1042. }
  1043. return 0
  1044. }
  1045. type GetUserProfileRes struct {
  1046. state protoimpl.MessageState
  1047. sizeCache protoimpl.SizeCache
  1048. unknownFields protoimpl.UnknownFields
  1049. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 用户id
  1050. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"` // 用户昵称
  1051. Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"` // 用户名
  1052. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"` // 用户状态0-正常1-封禁中2-禁言中3-删除
  1053. Avatar string `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"` // 头像
  1054. IsFollowing bool `protobuf:"varint,8,opt,name=is_following,json=isFollowing,proto3" json:"is_following,omitempty"` // 是否关注
  1055. CreatedOn int64 `protobuf:"varint,9,opt,name=created_on,json=createdOn,proto3" json:"created_on,omitempty"` // 注册时间
  1056. Follows int64 `protobuf:"varint,10,opt,name=follows,proto3" json:"follows,omitempty"` // 关注数
  1057. Fans int64 `protobuf:"varint,11,opt,name=fans,proto3" json:"fans,omitempty"` // 粉丝数
  1058. GetLikesCount int32 `protobuf:"varint,12,opt,name=get_likes_count,json=getLikesCount,proto3" json:"get_likes_count,omitempty"` //获得点赞数量
  1059. GetCollectionCount int32 `protobuf:"varint,13,opt,name=get_collection_count,json=getCollectionCount,proto3" json:"get_collection_count,omitempty"` //获得收藏的数量
  1060. Sex int32 `protobuf:"varint,14,opt,name=sex,proto3" json:"sex,omitempty"` //1-男2-女
  1061. }
  1062. func (x *GetUserProfileRes) Reset() {
  1063. *x = GetUserProfileRes{}
  1064. if protoimpl.UnsafeEnabled {
  1065. mi := &file_proto_slowwild_proto_msgTypes[19]
  1066. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1067. ms.StoreMessageInfo(mi)
  1068. }
  1069. }
  1070. func (x *GetUserProfileRes) String() string {
  1071. return protoimpl.X.MessageStringOf(x)
  1072. }
  1073. func (*GetUserProfileRes) ProtoMessage() {}
  1074. func (x *GetUserProfileRes) ProtoReflect() protoreflect.Message {
  1075. mi := &file_proto_slowwild_proto_msgTypes[19]
  1076. if protoimpl.UnsafeEnabled && x != nil {
  1077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1078. if ms.LoadMessageInfo() == nil {
  1079. ms.StoreMessageInfo(mi)
  1080. }
  1081. return ms
  1082. }
  1083. return mi.MessageOf(x)
  1084. }
  1085. // Deprecated: Use GetUserProfileRes.ProtoReflect.Descriptor instead.
  1086. func (*GetUserProfileRes) Descriptor() ([]byte, []int) {
  1087. return file_proto_slowwild_proto_rawDescGZIP(), []int{19}
  1088. }
  1089. func (x *GetUserProfileRes) GetId() int64 {
  1090. if x != nil {
  1091. return x.Id
  1092. }
  1093. return 0
  1094. }
  1095. func (x *GetUserProfileRes) GetNickname() string {
  1096. if x != nil {
  1097. return x.Nickname
  1098. }
  1099. return ""
  1100. }
  1101. func (x *GetUserProfileRes) GetUsername() string {
  1102. if x != nil {
  1103. return x.Username
  1104. }
  1105. return ""
  1106. }
  1107. func (x *GetUserProfileRes) GetStatus() int32 {
  1108. if x != nil {
  1109. return x.Status
  1110. }
  1111. return 0
  1112. }
  1113. func (x *GetUserProfileRes) GetAvatar() string {
  1114. if x != nil {
  1115. return x.Avatar
  1116. }
  1117. return ""
  1118. }
  1119. func (x *GetUserProfileRes) GetIsFollowing() bool {
  1120. if x != nil {
  1121. return x.IsFollowing
  1122. }
  1123. return false
  1124. }
  1125. func (x *GetUserProfileRes) GetCreatedOn() int64 {
  1126. if x != nil {
  1127. return x.CreatedOn
  1128. }
  1129. return 0
  1130. }
  1131. func (x *GetUserProfileRes) GetFollows() int64 {
  1132. if x != nil {
  1133. return x.Follows
  1134. }
  1135. return 0
  1136. }
  1137. func (x *GetUserProfileRes) GetFans() int64 {
  1138. if x != nil {
  1139. return x.Fans
  1140. }
  1141. return 0
  1142. }
  1143. func (x *GetUserProfileRes) GetGetLikesCount() int32 {
  1144. if x != nil {
  1145. return x.GetLikesCount
  1146. }
  1147. return 0
  1148. }
  1149. func (x *GetUserProfileRes) GetGetCollectionCount() int32 {
  1150. if x != nil {
  1151. return x.GetCollectionCount
  1152. }
  1153. return 0
  1154. }
  1155. func (x *GetUserProfileRes) GetSex() int32 {
  1156. if x != nil {
  1157. return x.Sex
  1158. }
  1159. return 0
  1160. }
  1161. // 模糊查询用户
  1162. type SearchUsernameReq struct {
  1163. state protoimpl.MessageState
  1164. sizeCache protoimpl.SizeCache
  1165. unknownFields protoimpl.UnknownFields
  1166. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  1167. }
  1168. func (x *SearchUsernameReq) Reset() {
  1169. *x = SearchUsernameReq{}
  1170. if protoimpl.UnsafeEnabled {
  1171. mi := &file_proto_slowwild_proto_msgTypes[20]
  1172. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1173. ms.StoreMessageInfo(mi)
  1174. }
  1175. }
  1176. func (x *SearchUsernameReq) String() string {
  1177. return protoimpl.X.MessageStringOf(x)
  1178. }
  1179. func (*SearchUsernameReq) ProtoMessage() {}
  1180. func (x *SearchUsernameReq) ProtoReflect() protoreflect.Message {
  1181. mi := &file_proto_slowwild_proto_msgTypes[20]
  1182. if protoimpl.UnsafeEnabled && x != nil {
  1183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1184. if ms.LoadMessageInfo() == nil {
  1185. ms.StoreMessageInfo(mi)
  1186. }
  1187. return ms
  1188. }
  1189. return mi.MessageOf(x)
  1190. }
  1191. // Deprecated: Use SearchUsernameReq.ProtoReflect.Descriptor instead.
  1192. func (*SearchUsernameReq) Descriptor() ([]byte, []int) {
  1193. return file_proto_slowwild_proto_rawDescGZIP(), []int{20}
  1194. }
  1195. func (x *SearchUsernameReq) GetUsername() string {
  1196. if x != nil {
  1197. return x.Username
  1198. }
  1199. return ""
  1200. }
  1201. type SearchUsernameItem struct {
  1202. state protoimpl.MessageState
  1203. sizeCache protoimpl.SizeCache
  1204. unknownFields protoimpl.UnknownFields
  1205. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  1206. Avatar string `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"`
  1207. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"`
  1208. }
  1209. func (x *SearchUsernameItem) Reset() {
  1210. *x = SearchUsernameItem{}
  1211. if protoimpl.UnsafeEnabled {
  1212. mi := &file_proto_slowwild_proto_msgTypes[21]
  1213. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1214. ms.StoreMessageInfo(mi)
  1215. }
  1216. }
  1217. func (x *SearchUsernameItem) String() string {
  1218. return protoimpl.X.MessageStringOf(x)
  1219. }
  1220. func (*SearchUsernameItem) ProtoMessage() {}
  1221. func (x *SearchUsernameItem) ProtoReflect() protoreflect.Message {
  1222. mi := &file_proto_slowwild_proto_msgTypes[21]
  1223. if protoimpl.UnsafeEnabled && x != nil {
  1224. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1225. if ms.LoadMessageInfo() == nil {
  1226. ms.StoreMessageInfo(mi)
  1227. }
  1228. return ms
  1229. }
  1230. return mi.MessageOf(x)
  1231. }
  1232. // Deprecated: Use SearchUsernameItem.ProtoReflect.Descriptor instead.
  1233. func (*SearchUsernameItem) Descriptor() ([]byte, []int) {
  1234. return file_proto_slowwild_proto_rawDescGZIP(), []int{21}
  1235. }
  1236. func (x *SearchUsernameItem) GetUsername() string {
  1237. if x != nil {
  1238. return x.Username
  1239. }
  1240. return ""
  1241. }
  1242. func (x *SearchUsernameItem) GetAvatar() string {
  1243. if x != nil {
  1244. return x.Avatar
  1245. }
  1246. return ""
  1247. }
  1248. func (x *SearchUsernameItem) GetId() int64 {
  1249. if x != nil {
  1250. return x.Id
  1251. }
  1252. return 0
  1253. }
  1254. type SearchUsernameRes struct {
  1255. state protoimpl.MessageState
  1256. sizeCache protoimpl.SizeCache
  1257. unknownFields protoimpl.UnknownFields
  1258. List []*SearchUsernameItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1259. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  1260. }
  1261. func (x *SearchUsernameRes) Reset() {
  1262. *x = SearchUsernameRes{}
  1263. if protoimpl.UnsafeEnabled {
  1264. mi := &file_proto_slowwild_proto_msgTypes[22]
  1265. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1266. ms.StoreMessageInfo(mi)
  1267. }
  1268. }
  1269. func (x *SearchUsernameRes) String() string {
  1270. return protoimpl.X.MessageStringOf(x)
  1271. }
  1272. func (*SearchUsernameRes) ProtoMessage() {}
  1273. func (x *SearchUsernameRes) ProtoReflect() protoreflect.Message {
  1274. mi := &file_proto_slowwild_proto_msgTypes[22]
  1275. if protoimpl.UnsafeEnabled && x != nil {
  1276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1277. if ms.LoadMessageInfo() == nil {
  1278. ms.StoreMessageInfo(mi)
  1279. }
  1280. return ms
  1281. }
  1282. return mi.MessageOf(x)
  1283. }
  1284. // Deprecated: Use SearchUsernameRes.ProtoReflect.Descriptor instead.
  1285. func (*SearchUsernameRes) Descriptor() ([]byte, []int) {
  1286. return file_proto_slowwild_proto_rawDescGZIP(), []int{22}
  1287. }
  1288. func (x *SearchUsernameRes) GetList() []*SearchUsernameItem {
  1289. if x != nil {
  1290. return x.List
  1291. }
  1292. return nil
  1293. }
  1294. func (x *SearchUsernameRes) GetTotal() int64 {
  1295. if x != nil {
  1296. return x.Total
  1297. }
  1298. return 0
  1299. }
  1300. var File_proto_slowwild_proto protoreflect.FileDescriptor
  1301. var file_proto_slowwild_proto_rawDesc = []byte{
  1302. 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64,
  1303. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64,
  1304. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0xc0, 0x02, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x45,
  1305. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1306. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18,
  1307. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1a, 0x0a,
  1308. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1309. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  1310. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  1311. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05,
  1312. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73,
  1313. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61,
  1314. 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
  1315. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73,
  1316. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x12,
  1317. 0x1e, 0x0a, 0x0a, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x09, 0x20,
  1318. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x73, 0x12,
  1319. 0x26, 0x0a, 0x0f, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6b, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75,
  1320. 0x6e, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x67, 0x65, 0x74, 0x4c, 0x69, 0x6b,
  1321. 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x67, 0x65, 0x74, 0x5f, 0x63,
  1322. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  1323. 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  1324. 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x60, 0x0a, 0x08, 0x55, 0x73, 0x65,
  1325. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1326. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18,
  1327. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1a, 0x0a,
  1328. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1329. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  1330. 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x68, 0x0a, 0x0e, 0x46,
  1331. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2c, 0x0a,
  1332. 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x73, 0x6c,
  1333. 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  1334. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x10, 0x69,
  1335. 0x73, 0x5f, 0x6d, 0x75, 0x74, 0x75, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x18,
  1336. 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x4d, 0x75, 0x74, 0x75, 0x61, 0x6c, 0x46,
  1337. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x43, 0x0a, 0x13, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x6e,
  1338. 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05,
  1339. 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b,
  1340. 0x65, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01,
  1341. 0x28, 0x03, 0x52, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x22, 0x6f, 0x0a, 0x08, 0x4c, 0x6f,
  1342. 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  1343. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  1344. 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1345. 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65,
  1346. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
  1347. 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05,
  1348. 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa1, 0x01, 0x0a, 0x0b,
  1349. 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70,
  1350. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  1351. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1352. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
  1353. 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1354. 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61,
  1355. 0x74, 0x61, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61,
  1356. 0x72, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
  1357. 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1358. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22,
  1359. 0x4d, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  1360. 0x71, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  1361. 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x71, 0x75,
  1362. 0x65, 0x72, 0x79, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1363. 0x03, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x84,
  1364. 0x01, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  1365. 0x73, 0x70, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  1366. 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x02, 0x20, 0x01,
  1367. 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69,
  1368. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69,
  1369. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x04, 0x20,
  1370. 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66,
  1371. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46,
  1372. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x51, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65,
  1373. 0x72, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,
  1374. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,
  1375. 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1376. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20,
  1377. 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x45, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64,
  1378. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
  1379. 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x73, 0x6c,
  1380. 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  1381. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22,
  1382. 0x4e, 0x0a, 0x0d, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71,
  1383. 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1384. 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x66, 0x6f, 0x6c,
  1385. 0x6c, 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1386. 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22,
  1387. 0x29, 0x0a, 0x0d, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73,
  1388. 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  1389. 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x55, 0x0a, 0x0f, 0x55, 0x6e,
  1390. 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a,
  1391. 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1392. 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x11, 0x75, 0x6e, 0x5f, 0x66, 0x6f, 0x6c,
  1393. 0x6c, 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1394. 0x03, 0x52, 0x0e, 0x75, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49,
  1395. 0x64, 0x22, 0x2b, 0x0a, 0x0f, 0x55, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65,
  1396. 0x72, 0x52, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18,
  1397. 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x7f,
  1398. 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x52, 0x65,
  1399. 0x71, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
  1400. 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61,
  1401. 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70,
  1402. 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18,
  1403. 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x71,
  1404. 0x75, 0x65, 0x72, 0x79, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01,
  1405. 0x28, 0x03, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22,
  1406. 0x5b, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x52,
  1407. 0x65, 0x73, 0x12, 0x32, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1408. 0x32, 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65,
  1409. 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  1410. 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18,
  1411. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x22, 0x7c, 0x0a, 0x0c,
  1412. 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07,
  1413. 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75,
  1414. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69,
  1415. 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69,
  1416. 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
  1417. 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f,
  1418. 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x71,
  1419. 0x75, 0x65, 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x58, 0x0a, 0x0c, 0x47, 0x65,
  1420. 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x04, 0x6c, 0x69,
  1421. 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77,
  1422. 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1423. 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x14,
  1424. 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74,
  1425. 0x6f, 0x74, 0x61, 0x6c, 0x22, 0x2c, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50,
  1426. 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
  1427. 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  1428. 0x49, 0x64, 0x22, 0xe7, 0x02, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72,
  1429. 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1430. 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b,
  1431. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b,
  1432. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,
  1433. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,
  1434. 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05,
  1435. 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74,
  1436. 0x61, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  1437. 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67,
  1438. 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1439. 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f,
  1440. 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
  1441. 0x4f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x0a, 0x20,
  1442. 0x01, 0x28, 0x03, 0x52, 0x07, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x12, 0x0a, 0x04,
  1443. 0x66, 0x61, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x66, 0x61, 0x6e, 0x73,
  1444. 0x12, 0x26, 0x0a, 0x0f, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6b, 0x65, 0x73, 0x5f, 0x63, 0x6f,
  1445. 0x75, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x67, 0x65, 0x74, 0x4c, 0x69,
  1446. 0x6b, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x67, 0x65, 0x74, 0x5f,
  1447. 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  1448. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  1449. 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1450. 0x78, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x2f, 0x0a, 0x11,
  1451. 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65,
  1452. 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
  1453. 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x58, 0x0a,
  1454. 0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x49,
  1455. 0x74, 0x65, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1456. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1457. 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  1458. 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x03, 0x20,
  1459. 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x61, 0x0a, 0x11, 0x53, 0x65, 0x61, 0x72, 0x63,
  1460. 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x12, 0x36, 0x0a, 0x04,
  1461. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f,
  1462. 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x61, 0x72,
  1463. 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04,
  1464. 0x6c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20,
  1465. 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x32, 0xa8, 0x06, 0x0a, 0x0e, 0x53,
  1466. 0x6c, 0x6f, 0x77, 0x57, 0x69, 0x6c, 0x64, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x46, 0x0a,
  1467. 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x18, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c,
  1468. 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71,
  1469. 0x1a, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65,
  1470. 0x72, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
  1471. 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x4c, 0x0a, 0x08, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  1472. 0x72, 0x12, 0x1b, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76,
  1473. 0x65, 0x72, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x23,
  1474. 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  1475. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  1476. 0x52, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  1477. 0x66, 0x6f, 0x12, 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1478. 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  1479. 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1480. 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  1481. 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x08, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12,
  1482. 0x1b, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1483. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x73,
  1484. 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x69,
  1485. 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4a, 0x0a, 0x0a, 0x55, 0x73,
  1486. 0x65, 0x72, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x1d, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77,
  1487. 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1488. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1489. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55,
  1490. 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x55, 0x6e, 0x55, 0x73, 0x65, 0x72,
  1491. 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c,
  1492. 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1493. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1494. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f,
  1495. 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x12, 0x4b, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x46,
  1496. 0x61, 0x6e, 0x73, 0x12, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65,
  1497. 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e,
  1498. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73,
  1499. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69,
  1500. 0x6e, 0x67, 0x52, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c,
  1501. 0x6f, 0x77, 0x73, 0x12, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65,
  1502. 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e,
  1503. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73,
  1504. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69,
  1505. 0x6e, 0x67, 0x52, 0x65, 0x73, 0x12, 0x56, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  1506. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1507. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  1508. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x73, 0x6c, 0x6f,
  1509. 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55,
  1510. 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x12, 0x56, 0x0a,
  1511. 0x0e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1512. 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1513. 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x52,
  1514. 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1515. 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61,
  1516. 0x6d, 0x65, 0x52, 0x65, 0x73, 0x42, 0x19, 0x5a, 0x17, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c,
  1517. 0x64, 0x2f, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1518. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1519. }
  1520. var (
  1521. file_proto_slowwild_proto_rawDescOnce sync.Once
  1522. file_proto_slowwild_proto_rawDescData = file_proto_slowwild_proto_rawDesc
  1523. )
  1524. func file_proto_slowwild_proto_rawDescGZIP() []byte {
  1525. file_proto_slowwild_proto_rawDescOnce.Do(func() {
  1526. file_proto_slowwild_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_slowwild_proto_rawDescData)
  1527. })
  1528. return file_proto_slowwild_proto_rawDescData
  1529. }
  1530. var file_proto_slowwild_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  1531. var file_proto_slowwild_proto_goTypes = []any{
  1532. (*UserEntity)(nil), // 0: slowwildserver.UserEntity
  1533. (*UserInfo)(nil), // 1: slowwildserver.UserInfo
  1534. (*FollowUserInfo)(nil), // 2: slowwildserver.FollowUserInfo
  1535. (*LoginAndRegisterRsp)(nil), // 3: slowwildserver.LoginAndRegisterRsp
  1536. (*LoginReq)(nil), // 4: slowwildserver.LoginReq
  1537. (*RegisterReq)(nil), // 5: slowwildserver.RegisterReq
  1538. (*GetUserInfoReq)(nil), // 6: slowwildserver.GetUserInfoReq
  1539. (*GetUserInfoResp)(nil), // 7: slowwildserver.GetUserInfoResp
  1540. (*FindUserReq)(nil), // 8: slowwildserver.FindUserReq
  1541. (*FindUserResp)(nil), // 9: slowwildserver.FindUserResp
  1542. (*FollowUserReq)(nil), // 10: slowwildserver.FollowUserReq
  1543. (*FollowUserRes)(nil), // 11: slowwildserver.FollowUserRes
  1544. (*UnFollowUserReq)(nil), // 12: slowwildserver.UnFollowUserReq
  1545. (*UnFollowUserRes)(nil), // 13: slowwildserver.UnFollowUserRes
  1546. (*GetFollowingReq)(nil), // 14: slowwildserver.GetFollowingReq
  1547. (*GetFollowingRes)(nil), // 15: slowwildserver.GetFollowingRes
  1548. (*GetFollowReq)(nil), // 16: slowwildserver.GetFollowReq
  1549. (*GetFollowRes)(nil), // 17: slowwildserver.GetFollowRes
  1550. (*GetUserProfileReq)(nil), // 18: slowwildserver.GetUserProfileReq
  1551. (*GetUserProfileRes)(nil), // 19: slowwildserver.GetUserProfileRes
  1552. (*SearchUsernameReq)(nil), // 20: slowwildserver.SearchUsernameReq
  1553. (*SearchUsernameItem)(nil), // 21: slowwildserver.SearchUsernameItem
  1554. (*SearchUsernameRes)(nil), // 22: slowwildserver.SearchUsernameRes
  1555. }
  1556. var file_proto_slowwild_proto_depIdxs = []int32{
  1557. 1, // 0: slowwildserver.FollowUserInfo.user:type_name -> slowwildserver.UserInfo
  1558. 1, // 1: slowwildserver.FindUserResp.user_list:type_name -> slowwildserver.UserInfo
  1559. 2, // 2: slowwildserver.GetFollowingRes.list:type_name -> slowwildserver.FollowUserInfo
  1560. 2, // 3: slowwildserver.GetFollowRes.list:type_name -> slowwildserver.FollowUserInfo
  1561. 21, // 4: slowwildserver.SearchUsernameRes.list:type_name -> slowwildserver.SearchUsernameItem
  1562. 4, // 5: slowwildserver.SlowWildServer.Login:input_type -> slowwildserver.LoginReq
  1563. 5, // 6: slowwildserver.SlowWildServer.Register:input_type -> slowwildserver.RegisterReq
  1564. 6, // 7: slowwildserver.SlowWildServer.GetUserInfo:input_type -> slowwildserver.GetUserInfoReq
  1565. 8, // 8: slowwildserver.SlowWildServer.FindUser:input_type -> slowwildserver.FindUserReq
  1566. 10, // 9: slowwildserver.SlowWildServer.UserFollow:input_type -> slowwildserver.FollowUserReq
  1567. 12, // 10: slowwildserver.SlowWildServer.UnUserFollow:input_type -> slowwildserver.UnFollowUserReq
  1568. 14, // 11: slowwildserver.SlowWildServer.GetFans:input_type -> slowwildserver.GetFollowingReq
  1569. 14, // 12: slowwildserver.SlowWildServer.GetFollows:input_type -> slowwildserver.GetFollowingReq
  1570. 18, // 13: slowwildserver.SlowWildServer.GetUserProfile:input_type -> slowwildserver.GetUserProfileReq
  1571. 20, // 14: slowwildserver.SlowWildServer.SearchUsername:input_type -> slowwildserver.SearchUsernameReq
  1572. 3, // 15: slowwildserver.SlowWildServer.Login:output_type -> slowwildserver.LoginAndRegisterRsp
  1573. 3, // 16: slowwildserver.SlowWildServer.Register:output_type -> slowwildserver.LoginAndRegisterRsp
  1574. 7, // 17: slowwildserver.SlowWildServer.GetUserInfo:output_type -> slowwildserver.GetUserInfoResp
  1575. 9, // 18: slowwildserver.SlowWildServer.FindUser:output_type -> slowwildserver.FindUserResp
  1576. 11, // 19: slowwildserver.SlowWildServer.UserFollow:output_type -> slowwildserver.FollowUserRes
  1577. 13, // 20: slowwildserver.SlowWildServer.UnUserFollow:output_type -> slowwildserver.UnFollowUserRes
  1578. 15, // 21: slowwildserver.SlowWildServer.GetFans:output_type -> slowwildserver.GetFollowingRes
  1579. 15, // 22: slowwildserver.SlowWildServer.GetFollows:output_type -> slowwildserver.GetFollowingRes
  1580. 19, // 23: slowwildserver.SlowWildServer.GetUserProfile:output_type -> slowwildserver.GetUserProfileRes
  1581. 22, // 24: slowwildserver.SlowWildServer.SearchUsername:output_type -> slowwildserver.SearchUsernameRes
  1582. 15, // [15:25] is the sub-list for method output_type
  1583. 5, // [5:15] is the sub-list for method input_type
  1584. 5, // [5:5] is the sub-list for extension type_name
  1585. 5, // [5:5] is the sub-list for extension extendee
  1586. 0, // [0:5] is the sub-list for field type_name
  1587. }
  1588. func init() { file_proto_slowwild_proto_init() }
  1589. func file_proto_slowwild_proto_init() {
  1590. if File_proto_slowwild_proto != nil {
  1591. return
  1592. }
  1593. if !protoimpl.UnsafeEnabled {
  1594. file_proto_slowwild_proto_msgTypes[0].Exporter = func(v any, i int) any {
  1595. switch v := v.(*UserEntity); i {
  1596. case 0:
  1597. return &v.state
  1598. case 1:
  1599. return &v.sizeCache
  1600. case 2:
  1601. return &v.unknownFields
  1602. default:
  1603. return nil
  1604. }
  1605. }
  1606. file_proto_slowwild_proto_msgTypes[1].Exporter = func(v any, i int) any {
  1607. switch v := v.(*UserInfo); i {
  1608. case 0:
  1609. return &v.state
  1610. case 1:
  1611. return &v.sizeCache
  1612. case 2:
  1613. return &v.unknownFields
  1614. default:
  1615. return nil
  1616. }
  1617. }
  1618. file_proto_slowwild_proto_msgTypes[2].Exporter = func(v any, i int) any {
  1619. switch v := v.(*FollowUserInfo); i {
  1620. case 0:
  1621. return &v.state
  1622. case 1:
  1623. return &v.sizeCache
  1624. case 2:
  1625. return &v.unknownFields
  1626. default:
  1627. return nil
  1628. }
  1629. }
  1630. file_proto_slowwild_proto_msgTypes[3].Exporter = func(v any, i int) any {
  1631. switch v := v.(*LoginAndRegisterRsp); i {
  1632. case 0:
  1633. return &v.state
  1634. case 1:
  1635. return &v.sizeCache
  1636. case 2:
  1637. return &v.unknownFields
  1638. default:
  1639. return nil
  1640. }
  1641. }
  1642. file_proto_slowwild_proto_msgTypes[4].Exporter = func(v any, i int) any {
  1643. switch v := v.(*LoginReq); i {
  1644. case 0:
  1645. return &v.state
  1646. case 1:
  1647. return &v.sizeCache
  1648. case 2:
  1649. return &v.unknownFields
  1650. default:
  1651. return nil
  1652. }
  1653. }
  1654. file_proto_slowwild_proto_msgTypes[5].Exporter = func(v any, i int) any {
  1655. switch v := v.(*RegisterReq); i {
  1656. case 0:
  1657. return &v.state
  1658. case 1:
  1659. return &v.sizeCache
  1660. case 2:
  1661. return &v.unknownFields
  1662. default:
  1663. return nil
  1664. }
  1665. }
  1666. file_proto_slowwild_proto_msgTypes[6].Exporter = func(v any, i int) any {
  1667. switch v := v.(*GetUserInfoReq); i {
  1668. case 0:
  1669. return &v.state
  1670. case 1:
  1671. return &v.sizeCache
  1672. case 2:
  1673. return &v.unknownFields
  1674. default:
  1675. return nil
  1676. }
  1677. }
  1678. file_proto_slowwild_proto_msgTypes[7].Exporter = func(v any, i int) any {
  1679. switch v := v.(*GetUserInfoResp); i {
  1680. case 0:
  1681. return &v.state
  1682. case 1:
  1683. return &v.sizeCache
  1684. case 2:
  1685. return &v.unknownFields
  1686. default:
  1687. return nil
  1688. }
  1689. }
  1690. file_proto_slowwild_proto_msgTypes[8].Exporter = func(v any, i int) any {
  1691. switch v := v.(*FindUserReq); i {
  1692. case 0:
  1693. return &v.state
  1694. case 1:
  1695. return &v.sizeCache
  1696. case 2:
  1697. return &v.unknownFields
  1698. default:
  1699. return nil
  1700. }
  1701. }
  1702. file_proto_slowwild_proto_msgTypes[9].Exporter = func(v any, i int) any {
  1703. switch v := v.(*FindUserResp); i {
  1704. case 0:
  1705. return &v.state
  1706. case 1:
  1707. return &v.sizeCache
  1708. case 2:
  1709. return &v.unknownFields
  1710. default:
  1711. return nil
  1712. }
  1713. }
  1714. file_proto_slowwild_proto_msgTypes[10].Exporter = func(v any, i int) any {
  1715. switch v := v.(*FollowUserReq); i {
  1716. case 0:
  1717. return &v.state
  1718. case 1:
  1719. return &v.sizeCache
  1720. case 2:
  1721. return &v.unknownFields
  1722. default:
  1723. return nil
  1724. }
  1725. }
  1726. file_proto_slowwild_proto_msgTypes[11].Exporter = func(v any, i int) any {
  1727. switch v := v.(*FollowUserRes); i {
  1728. case 0:
  1729. return &v.state
  1730. case 1:
  1731. return &v.sizeCache
  1732. case 2:
  1733. return &v.unknownFields
  1734. default:
  1735. return nil
  1736. }
  1737. }
  1738. file_proto_slowwild_proto_msgTypes[12].Exporter = func(v any, i int) any {
  1739. switch v := v.(*UnFollowUserReq); i {
  1740. case 0:
  1741. return &v.state
  1742. case 1:
  1743. return &v.sizeCache
  1744. case 2:
  1745. return &v.unknownFields
  1746. default:
  1747. return nil
  1748. }
  1749. }
  1750. file_proto_slowwild_proto_msgTypes[13].Exporter = func(v any, i int) any {
  1751. switch v := v.(*UnFollowUserRes); i {
  1752. case 0:
  1753. return &v.state
  1754. case 1:
  1755. return &v.sizeCache
  1756. case 2:
  1757. return &v.unknownFields
  1758. default:
  1759. return nil
  1760. }
  1761. }
  1762. file_proto_slowwild_proto_msgTypes[14].Exporter = func(v any, i int) any {
  1763. switch v := v.(*GetFollowingReq); i {
  1764. case 0:
  1765. return &v.state
  1766. case 1:
  1767. return &v.sizeCache
  1768. case 2:
  1769. return &v.unknownFields
  1770. default:
  1771. return nil
  1772. }
  1773. }
  1774. file_proto_slowwild_proto_msgTypes[15].Exporter = func(v any, i int) any {
  1775. switch v := v.(*GetFollowingRes); i {
  1776. case 0:
  1777. return &v.state
  1778. case 1:
  1779. return &v.sizeCache
  1780. case 2:
  1781. return &v.unknownFields
  1782. default:
  1783. return nil
  1784. }
  1785. }
  1786. file_proto_slowwild_proto_msgTypes[16].Exporter = func(v any, i int) any {
  1787. switch v := v.(*GetFollowReq); i {
  1788. case 0:
  1789. return &v.state
  1790. case 1:
  1791. return &v.sizeCache
  1792. case 2:
  1793. return &v.unknownFields
  1794. default:
  1795. return nil
  1796. }
  1797. }
  1798. file_proto_slowwild_proto_msgTypes[17].Exporter = func(v any, i int) any {
  1799. switch v := v.(*GetFollowRes); i {
  1800. case 0:
  1801. return &v.state
  1802. case 1:
  1803. return &v.sizeCache
  1804. case 2:
  1805. return &v.unknownFields
  1806. default:
  1807. return nil
  1808. }
  1809. }
  1810. file_proto_slowwild_proto_msgTypes[18].Exporter = func(v any, i int) any {
  1811. switch v := v.(*GetUserProfileReq); i {
  1812. case 0:
  1813. return &v.state
  1814. case 1:
  1815. return &v.sizeCache
  1816. case 2:
  1817. return &v.unknownFields
  1818. default:
  1819. return nil
  1820. }
  1821. }
  1822. file_proto_slowwild_proto_msgTypes[19].Exporter = func(v any, i int) any {
  1823. switch v := v.(*GetUserProfileRes); i {
  1824. case 0:
  1825. return &v.state
  1826. case 1:
  1827. return &v.sizeCache
  1828. case 2:
  1829. return &v.unknownFields
  1830. default:
  1831. return nil
  1832. }
  1833. }
  1834. file_proto_slowwild_proto_msgTypes[20].Exporter = func(v any, i int) any {
  1835. switch v := v.(*SearchUsernameReq); i {
  1836. case 0:
  1837. return &v.state
  1838. case 1:
  1839. return &v.sizeCache
  1840. case 2:
  1841. return &v.unknownFields
  1842. default:
  1843. return nil
  1844. }
  1845. }
  1846. file_proto_slowwild_proto_msgTypes[21].Exporter = func(v any, i int) any {
  1847. switch v := v.(*SearchUsernameItem); i {
  1848. case 0:
  1849. return &v.state
  1850. case 1:
  1851. return &v.sizeCache
  1852. case 2:
  1853. return &v.unknownFields
  1854. default:
  1855. return nil
  1856. }
  1857. }
  1858. file_proto_slowwild_proto_msgTypes[22].Exporter = func(v any, i int) any {
  1859. switch v := v.(*SearchUsernameRes); i {
  1860. case 0:
  1861. return &v.state
  1862. case 1:
  1863. return &v.sizeCache
  1864. case 2:
  1865. return &v.unknownFields
  1866. default:
  1867. return nil
  1868. }
  1869. }
  1870. }
  1871. type x struct{}
  1872. out := protoimpl.TypeBuilder{
  1873. File: protoimpl.DescBuilder{
  1874. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1875. RawDescriptor: file_proto_slowwild_proto_rawDesc,
  1876. NumEnums: 0,
  1877. NumMessages: 23,
  1878. NumExtensions: 0,
  1879. NumServices: 1,
  1880. },
  1881. GoTypes: file_proto_slowwild_proto_goTypes,
  1882. DependencyIndexes: file_proto_slowwild_proto_depIdxs,
  1883. MessageInfos: file_proto_slowwild_proto_msgTypes,
  1884. }.Build()
  1885. File_proto_slowwild_proto = out.File
  1886. file_proto_slowwild_proto_rawDesc = nil
  1887. file_proto_slowwild_proto_goTypes = nil
  1888. file_proto_slowwild_proto_depIdxs = nil
  1889. }