slowwild.pb.go 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091
  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. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 用户id
  419. }
  420. func (x *GetUserInfoReq) Reset() {
  421. *x = GetUserInfoReq{}
  422. if protoimpl.UnsafeEnabled {
  423. mi := &file_proto_slowwild_proto_msgTypes[6]
  424. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  425. ms.StoreMessageInfo(mi)
  426. }
  427. }
  428. func (x *GetUserInfoReq) String() string {
  429. return protoimpl.X.MessageStringOf(x)
  430. }
  431. func (*GetUserInfoReq) ProtoMessage() {}
  432. func (x *GetUserInfoReq) ProtoReflect() protoreflect.Message {
  433. mi := &file_proto_slowwild_proto_msgTypes[6]
  434. if protoimpl.UnsafeEnabled && x != nil {
  435. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  436. if ms.LoadMessageInfo() == nil {
  437. ms.StoreMessageInfo(mi)
  438. }
  439. return ms
  440. }
  441. return mi.MessageOf(x)
  442. }
  443. // Deprecated: Use GetUserInfoReq.ProtoReflect.Descriptor instead.
  444. func (*GetUserInfoReq) Descriptor() ([]byte, []int) {
  445. return file_proto_slowwild_proto_rawDescGZIP(), []int{6}
  446. }
  447. func (x *GetUserInfoReq) GetId() int64 {
  448. if x != nil {
  449. return x.Id
  450. }
  451. return 0
  452. }
  453. type GetUserInfoResp struct {
  454. state protoimpl.MessageState
  455. sizeCache protoimpl.SizeCache
  456. unknownFields protoimpl.UnknownFields
  457. User *UserEntity `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"` // 用户信息
  458. }
  459. func (x *GetUserInfoResp) Reset() {
  460. *x = GetUserInfoResp{}
  461. if protoimpl.UnsafeEnabled {
  462. mi := &file_proto_slowwild_proto_msgTypes[7]
  463. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  464. ms.StoreMessageInfo(mi)
  465. }
  466. }
  467. func (x *GetUserInfoResp) String() string {
  468. return protoimpl.X.MessageStringOf(x)
  469. }
  470. func (*GetUserInfoResp) ProtoMessage() {}
  471. func (x *GetUserInfoResp) ProtoReflect() protoreflect.Message {
  472. mi := &file_proto_slowwild_proto_msgTypes[7]
  473. if protoimpl.UnsafeEnabled && x != nil {
  474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  475. if ms.LoadMessageInfo() == nil {
  476. ms.StoreMessageInfo(mi)
  477. }
  478. return ms
  479. }
  480. return mi.MessageOf(x)
  481. }
  482. // Deprecated: Use GetUserInfoResp.ProtoReflect.Descriptor instead.
  483. func (*GetUserInfoResp) Descriptor() ([]byte, []int) {
  484. return file_proto_slowwild_proto_rawDescGZIP(), []int{7}
  485. }
  486. func (x *GetUserInfoResp) GetUser() *UserEntity {
  487. if x != nil {
  488. return x.User
  489. }
  490. return nil
  491. }
  492. type FindUserReq struct {
  493. state protoimpl.MessageState
  494. sizeCache protoimpl.SizeCache
  495. unknownFields protoimpl.UnknownFields
  496. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` // 用户昵称
  497. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"` // 用户手机号码
  498. Ids []int64 `protobuf:"varint,3,rep,packed,name=ids,proto3" json:"ids,omitempty"` // 用户id
  499. }
  500. func (x *FindUserReq) Reset() {
  501. *x = FindUserReq{}
  502. if protoimpl.UnsafeEnabled {
  503. mi := &file_proto_slowwild_proto_msgTypes[8]
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. ms.StoreMessageInfo(mi)
  506. }
  507. }
  508. func (x *FindUserReq) String() string {
  509. return protoimpl.X.MessageStringOf(x)
  510. }
  511. func (*FindUserReq) ProtoMessage() {}
  512. func (x *FindUserReq) ProtoReflect() protoreflect.Message {
  513. mi := &file_proto_slowwild_proto_msgTypes[8]
  514. if protoimpl.UnsafeEnabled && x != nil {
  515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  516. if ms.LoadMessageInfo() == nil {
  517. ms.StoreMessageInfo(mi)
  518. }
  519. return ms
  520. }
  521. return mi.MessageOf(x)
  522. }
  523. // Deprecated: Use FindUserReq.ProtoReflect.Descriptor instead.
  524. func (*FindUserReq) Descriptor() ([]byte, []int) {
  525. return file_proto_slowwild_proto_rawDescGZIP(), []int{8}
  526. }
  527. func (x *FindUserReq) GetUsername() string {
  528. if x != nil {
  529. return x.Username
  530. }
  531. return ""
  532. }
  533. func (x *FindUserReq) GetPhone() string {
  534. if x != nil {
  535. return x.Phone
  536. }
  537. return ""
  538. }
  539. func (x *FindUserReq) GetIds() []int64 {
  540. if x != nil {
  541. return x.Ids
  542. }
  543. return nil
  544. }
  545. type FindUserResp struct {
  546. state protoimpl.MessageState
  547. sizeCache protoimpl.SizeCache
  548. unknownFields protoimpl.UnknownFields
  549. UserList []*UserInfo `protobuf:"bytes,1,rep,name=user_list,json=userList,proto3" json:"user_list,omitempty"` // 用户信息
  550. }
  551. func (x *FindUserResp) Reset() {
  552. *x = FindUserResp{}
  553. if protoimpl.UnsafeEnabled {
  554. mi := &file_proto_slowwild_proto_msgTypes[9]
  555. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  556. ms.StoreMessageInfo(mi)
  557. }
  558. }
  559. func (x *FindUserResp) String() string {
  560. return protoimpl.X.MessageStringOf(x)
  561. }
  562. func (*FindUserResp) ProtoMessage() {}
  563. func (x *FindUserResp) ProtoReflect() protoreflect.Message {
  564. mi := &file_proto_slowwild_proto_msgTypes[9]
  565. if protoimpl.UnsafeEnabled && x != nil {
  566. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  567. if ms.LoadMessageInfo() == nil {
  568. ms.StoreMessageInfo(mi)
  569. }
  570. return ms
  571. }
  572. return mi.MessageOf(x)
  573. }
  574. // Deprecated: Use FindUserResp.ProtoReflect.Descriptor instead.
  575. func (*FindUserResp) Descriptor() ([]byte, []int) {
  576. return file_proto_slowwild_proto_rawDescGZIP(), []int{9}
  577. }
  578. func (x *FindUserResp) GetUserList() []*UserInfo {
  579. if x != nil {
  580. return x.UserList
  581. }
  582. return nil
  583. }
  584. // 用户关注
  585. type FollowUserReq struct {
  586. state protoimpl.MessageState
  587. sizeCache protoimpl.SizeCache
  588. unknownFields protoimpl.UnknownFields
  589. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录用户id
  590. FollowUserId int64 `protobuf:"varint,2,opt,name=follow_user_id,json=followUserId,proto3" json:"follow_user_id,omitempty"` // 被关注的用户id
  591. }
  592. func (x *FollowUserReq) Reset() {
  593. *x = FollowUserReq{}
  594. if protoimpl.UnsafeEnabled {
  595. mi := &file_proto_slowwild_proto_msgTypes[10]
  596. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  597. ms.StoreMessageInfo(mi)
  598. }
  599. }
  600. func (x *FollowUserReq) String() string {
  601. return protoimpl.X.MessageStringOf(x)
  602. }
  603. func (*FollowUserReq) ProtoMessage() {}
  604. func (x *FollowUserReq) ProtoReflect() protoreflect.Message {
  605. mi := &file_proto_slowwild_proto_msgTypes[10]
  606. if protoimpl.UnsafeEnabled && x != nil {
  607. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  608. if ms.LoadMessageInfo() == nil {
  609. ms.StoreMessageInfo(mi)
  610. }
  611. return ms
  612. }
  613. return mi.MessageOf(x)
  614. }
  615. // Deprecated: Use FollowUserReq.ProtoReflect.Descriptor instead.
  616. func (*FollowUserReq) Descriptor() ([]byte, []int) {
  617. return file_proto_slowwild_proto_rawDescGZIP(), []int{10}
  618. }
  619. func (x *FollowUserReq) GetUserId() int64 {
  620. if x != nil {
  621. return x.UserId
  622. }
  623. return 0
  624. }
  625. func (x *FollowUserReq) GetFollowUserId() int64 {
  626. if x != nil {
  627. return x.FollowUserId
  628. }
  629. return 0
  630. }
  631. type FollowUserRes struct {
  632. state protoimpl.MessageState
  633. sizeCache protoimpl.SizeCache
  634. unknownFields protoimpl.UnknownFields
  635. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` // 是否关注成功
  636. }
  637. func (x *FollowUserRes) Reset() {
  638. *x = FollowUserRes{}
  639. if protoimpl.UnsafeEnabled {
  640. mi := &file_proto_slowwild_proto_msgTypes[11]
  641. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  642. ms.StoreMessageInfo(mi)
  643. }
  644. }
  645. func (x *FollowUserRes) String() string {
  646. return protoimpl.X.MessageStringOf(x)
  647. }
  648. func (*FollowUserRes) ProtoMessage() {}
  649. func (x *FollowUserRes) ProtoReflect() protoreflect.Message {
  650. mi := &file_proto_slowwild_proto_msgTypes[11]
  651. if protoimpl.UnsafeEnabled && x != nil {
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. if ms.LoadMessageInfo() == nil {
  654. ms.StoreMessageInfo(mi)
  655. }
  656. return ms
  657. }
  658. return mi.MessageOf(x)
  659. }
  660. // Deprecated: Use FollowUserRes.ProtoReflect.Descriptor instead.
  661. func (*FollowUserRes) Descriptor() ([]byte, []int) {
  662. return file_proto_slowwild_proto_rawDescGZIP(), []int{11}
  663. }
  664. func (x *FollowUserRes) GetSuccess() bool {
  665. if x != nil {
  666. return x.Success
  667. }
  668. return false
  669. }
  670. // 用户取消关注
  671. type UnFollowUserReq struct {
  672. state protoimpl.MessageState
  673. sizeCache protoimpl.SizeCache
  674. unknownFields protoimpl.UnknownFields
  675. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录的用户id
  676. UnFollowUserId int64 `protobuf:"varint,2,opt,name=un_follow_user_id,json=unFollowUserId,proto3" json:"un_follow_user_id,omitempty"` // 当前被取消关注的用户id
  677. }
  678. func (x *UnFollowUserReq) Reset() {
  679. *x = UnFollowUserReq{}
  680. if protoimpl.UnsafeEnabled {
  681. mi := &file_proto_slowwild_proto_msgTypes[12]
  682. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  683. ms.StoreMessageInfo(mi)
  684. }
  685. }
  686. func (x *UnFollowUserReq) String() string {
  687. return protoimpl.X.MessageStringOf(x)
  688. }
  689. func (*UnFollowUserReq) ProtoMessage() {}
  690. func (x *UnFollowUserReq) ProtoReflect() protoreflect.Message {
  691. mi := &file_proto_slowwild_proto_msgTypes[12]
  692. if protoimpl.UnsafeEnabled && x != nil {
  693. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  694. if ms.LoadMessageInfo() == nil {
  695. ms.StoreMessageInfo(mi)
  696. }
  697. return ms
  698. }
  699. return mi.MessageOf(x)
  700. }
  701. // Deprecated: Use UnFollowUserReq.ProtoReflect.Descriptor instead.
  702. func (*UnFollowUserReq) Descriptor() ([]byte, []int) {
  703. return file_proto_slowwild_proto_rawDescGZIP(), []int{12}
  704. }
  705. func (x *UnFollowUserReq) GetUserId() int64 {
  706. if x != nil {
  707. return x.UserId
  708. }
  709. return 0
  710. }
  711. func (x *UnFollowUserReq) GetUnFollowUserId() int64 {
  712. if x != nil {
  713. return x.UnFollowUserId
  714. }
  715. return 0
  716. }
  717. type UnFollowUserRes struct {
  718. state protoimpl.MessageState
  719. sizeCache protoimpl.SizeCache
  720. unknownFields protoimpl.UnknownFields
  721. Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` // 是否关注成功
  722. }
  723. func (x *UnFollowUserRes) Reset() {
  724. *x = UnFollowUserRes{}
  725. if protoimpl.UnsafeEnabled {
  726. mi := &file_proto_slowwild_proto_msgTypes[13]
  727. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  728. ms.StoreMessageInfo(mi)
  729. }
  730. }
  731. func (x *UnFollowUserRes) String() string {
  732. return protoimpl.X.MessageStringOf(x)
  733. }
  734. func (*UnFollowUserRes) ProtoMessage() {}
  735. func (x *UnFollowUserRes) ProtoReflect() protoreflect.Message {
  736. mi := &file_proto_slowwild_proto_msgTypes[13]
  737. if protoimpl.UnsafeEnabled && x != nil {
  738. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  739. if ms.LoadMessageInfo() == nil {
  740. ms.StoreMessageInfo(mi)
  741. }
  742. return ms
  743. }
  744. return mi.MessageOf(x)
  745. }
  746. // Deprecated: Use UnFollowUserRes.ProtoReflect.Descriptor instead.
  747. func (*UnFollowUserRes) Descriptor() ([]byte, []int) {
  748. return file_proto_slowwild_proto_rawDescGZIP(), []int{13}
  749. }
  750. func (x *UnFollowUserRes) GetSuccess() bool {
  751. if x != nil {
  752. return x.Success
  753. }
  754. return false
  755. }
  756. // 查询粉丝列表
  757. type GetFollowingReq struct {
  758. state protoimpl.MessageState
  759. sizeCache protoimpl.SizeCache
  760. unknownFields protoimpl.UnknownFields
  761. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录用户的id
  762. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // 数量限制
  763. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"` // 分页开始偏移量
  764. QueryUserId int64 `protobuf:"varint,4,opt,name=query_user_id,json=queryUserId,proto3" json:"query_user_id,omitempty"` // 查询用户的id
  765. }
  766. func (x *GetFollowingReq) Reset() {
  767. *x = GetFollowingReq{}
  768. if protoimpl.UnsafeEnabled {
  769. mi := &file_proto_slowwild_proto_msgTypes[14]
  770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  771. ms.StoreMessageInfo(mi)
  772. }
  773. }
  774. func (x *GetFollowingReq) String() string {
  775. return protoimpl.X.MessageStringOf(x)
  776. }
  777. func (*GetFollowingReq) ProtoMessage() {}
  778. func (x *GetFollowingReq) ProtoReflect() protoreflect.Message {
  779. mi := &file_proto_slowwild_proto_msgTypes[14]
  780. if protoimpl.UnsafeEnabled && x != nil {
  781. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  782. if ms.LoadMessageInfo() == nil {
  783. ms.StoreMessageInfo(mi)
  784. }
  785. return ms
  786. }
  787. return mi.MessageOf(x)
  788. }
  789. // Deprecated: Use GetFollowingReq.ProtoReflect.Descriptor instead.
  790. func (*GetFollowingReq) Descriptor() ([]byte, []int) {
  791. return file_proto_slowwild_proto_rawDescGZIP(), []int{14}
  792. }
  793. func (x *GetFollowingReq) GetUserId() int64 {
  794. if x != nil {
  795. return x.UserId
  796. }
  797. return 0
  798. }
  799. func (x *GetFollowingReq) GetPageSize() int32 {
  800. if x != nil {
  801. return x.PageSize
  802. }
  803. return 0
  804. }
  805. func (x *GetFollowingReq) GetPage() int32 {
  806. if x != nil {
  807. return x.Page
  808. }
  809. return 0
  810. }
  811. func (x *GetFollowingReq) GetQueryUserId() int64 {
  812. if x != nil {
  813. return x.QueryUserId
  814. }
  815. return 0
  816. }
  817. type GetFollowingRes struct {
  818. state protoimpl.MessageState
  819. sizeCache protoimpl.SizeCache
  820. unknownFields protoimpl.UnknownFields
  821. List []*FollowUserInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  822. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  823. }
  824. func (x *GetFollowingRes) Reset() {
  825. *x = GetFollowingRes{}
  826. if protoimpl.UnsafeEnabled {
  827. mi := &file_proto_slowwild_proto_msgTypes[15]
  828. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  829. ms.StoreMessageInfo(mi)
  830. }
  831. }
  832. func (x *GetFollowingRes) String() string {
  833. return protoimpl.X.MessageStringOf(x)
  834. }
  835. func (*GetFollowingRes) ProtoMessage() {}
  836. func (x *GetFollowingRes) ProtoReflect() protoreflect.Message {
  837. mi := &file_proto_slowwild_proto_msgTypes[15]
  838. if protoimpl.UnsafeEnabled && x != nil {
  839. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  840. if ms.LoadMessageInfo() == nil {
  841. ms.StoreMessageInfo(mi)
  842. }
  843. return ms
  844. }
  845. return mi.MessageOf(x)
  846. }
  847. // Deprecated: Use GetFollowingRes.ProtoReflect.Descriptor instead.
  848. func (*GetFollowingRes) Descriptor() ([]byte, []int) {
  849. return file_proto_slowwild_proto_rawDescGZIP(), []int{15}
  850. }
  851. func (x *GetFollowingRes) GetList() []*FollowUserInfo {
  852. if x != nil {
  853. return x.List
  854. }
  855. return nil
  856. }
  857. func (x *GetFollowingRes) GetTotal() int64 {
  858. if x != nil {
  859. return x.Total
  860. }
  861. return 0
  862. }
  863. // 查询我关注的列表
  864. type GetFollowReq struct {
  865. state protoimpl.MessageState
  866. sizeCache protoimpl.SizeCache
  867. unknownFields protoimpl.UnknownFields
  868. UserId int64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"` // 当前登录用户的id
  869. PageSize int32 `protobuf:"varint,2,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"` // 数量限制
  870. Page int32 `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"` // 分页开始偏移量
  871. QueryUserId int64 `protobuf:"varint,4,opt,name=query_user_id,json=queryUserId,proto3" json:"query_user_id,omitempty"` // 查询用户的id
  872. }
  873. func (x *GetFollowReq) Reset() {
  874. *x = GetFollowReq{}
  875. if protoimpl.UnsafeEnabled {
  876. mi := &file_proto_slowwild_proto_msgTypes[16]
  877. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  878. ms.StoreMessageInfo(mi)
  879. }
  880. }
  881. func (x *GetFollowReq) String() string {
  882. return protoimpl.X.MessageStringOf(x)
  883. }
  884. func (*GetFollowReq) ProtoMessage() {}
  885. func (x *GetFollowReq) ProtoReflect() protoreflect.Message {
  886. mi := &file_proto_slowwild_proto_msgTypes[16]
  887. if protoimpl.UnsafeEnabled && x != nil {
  888. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  889. if ms.LoadMessageInfo() == nil {
  890. ms.StoreMessageInfo(mi)
  891. }
  892. return ms
  893. }
  894. return mi.MessageOf(x)
  895. }
  896. // Deprecated: Use GetFollowReq.ProtoReflect.Descriptor instead.
  897. func (*GetFollowReq) Descriptor() ([]byte, []int) {
  898. return file_proto_slowwild_proto_rawDescGZIP(), []int{16}
  899. }
  900. func (x *GetFollowReq) GetUserId() int64 {
  901. if x != nil {
  902. return x.UserId
  903. }
  904. return 0
  905. }
  906. func (x *GetFollowReq) GetPageSize() int32 {
  907. if x != nil {
  908. return x.PageSize
  909. }
  910. return 0
  911. }
  912. func (x *GetFollowReq) GetPage() int32 {
  913. if x != nil {
  914. return x.Page
  915. }
  916. return 0
  917. }
  918. func (x *GetFollowReq) GetQueryUserId() int64 {
  919. if x != nil {
  920. return x.QueryUserId
  921. }
  922. return 0
  923. }
  924. type GetFollowRes struct {
  925. state protoimpl.MessageState
  926. sizeCache protoimpl.SizeCache
  927. unknownFields protoimpl.UnknownFields
  928. List []*FollowUserInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  929. Total int64 `protobuf:"varint,2,opt,name=total,proto3" json:"total,omitempty"`
  930. }
  931. func (x *GetFollowRes) Reset() {
  932. *x = GetFollowRes{}
  933. if protoimpl.UnsafeEnabled {
  934. mi := &file_proto_slowwild_proto_msgTypes[17]
  935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  936. ms.StoreMessageInfo(mi)
  937. }
  938. }
  939. func (x *GetFollowRes) String() string {
  940. return protoimpl.X.MessageStringOf(x)
  941. }
  942. func (*GetFollowRes) ProtoMessage() {}
  943. func (x *GetFollowRes) ProtoReflect() protoreflect.Message {
  944. mi := &file_proto_slowwild_proto_msgTypes[17]
  945. if protoimpl.UnsafeEnabled && x != nil {
  946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  947. if ms.LoadMessageInfo() == nil {
  948. ms.StoreMessageInfo(mi)
  949. }
  950. return ms
  951. }
  952. return mi.MessageOf(x)
  953. }
  954. // Deprecated: Use GetFollowRes.ProtoReflect.Descriptor instead.
  955. func (*GetFollowRes) Descriptor() ([]byte, []int) {
  956. return file_proto_slowwild_proto_rawDescGZIP(), []int{17}
  957. }
  958. func (x *GetFollowRes) GetList() []*FollowUserInfo {
  959. if x != nil {
  960. return x.List
  961. }
  962. return nil
  963. }
  964. func (x *GetFollowRes) GetTotal() int64 {
  965. if x != nil {
  966. return x.Total
  967. }
  968. return 0
  969. }
  970. // 查询用户信息
  971. type GetUserProfileReq struct {
  972. state protoimpl.MessageState
  973. sizeCache protoimpl.SizeCache
  974. unknownFields protoimpl.UnknownFields
  975. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  976. UserId int64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  977. }
  978. func (x *GetUserProfileReq) Reset() {
  979. *x = GetUserProfileReq{}
  980. if protoimpl.UnsafeEnabled {
  981. mi := &file_proto_slowwild_proto_msgTypes[18]
  982. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  983. ms.StoreMessageInfo(mi)
  984. }
  985. }
  986. func (x *GetUserProfileReq) String() string {
  987. return protoimpl.X.MessageStringOf(x)
  988. }
  989. func (*GetUserProfileReq) ProtoMessage() {}
  990. func (x *GetUserProfileReq) ProtoReflect() protoreflect.Message {
  991. mi := &file_proto_slowwild_proto_msgTypes[18]
  992. if protoimpl.UnsafeEnabled && x != nil {
  993. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  994. if ms.LoadMessageInfo() == nil {
  995. ms.StoreMessageInfo(mi)
  996. }
  997. return ms
  998. }
  999. return mi.MessageOf(x)
  1000. }
  1001. // Deprecated: Use GetUserProfileReq.ProtoReflect.Descriptor instead.
  1002. func (*GetUserProfileReq) Descriptor() ([]byte, []int) {
  1003. return file_proto_slowwild_proto_rawDescGZIP(), []int{18}
  1004. }
  1005. func (x *GetUserProfileReq) GetUsername() string {
  1006. if x != nil {
  1007. return x.Username
  1008. }
  1009. return ""
  1010. }
  1011. func (x *GetUserProfileReq) GetUserId() int64 {
  1012. if x != nil {
  1013. return x.UserId
  1014. }
  1015. return 0
  1016. }
  1017. type GetUserProfileRes struct {
  1018. state protoimpl.MessageState
  1019. sizeCache protoimpl.SizeCache
  1020. unknownFields protoimpl.UnknownFields
  1021. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 用户id
  1022. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname,omitempty"` // 用户昵称
  1023. Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"` // 用户名
  1024. Status int32 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"` // 用户状态0-正常1-封禁中2-禁言中3-删除
  1025. Avatar string `protobuf:"bytes,5,opt,name=avatar,proto3" json:"avatar,omitempty"` // 头像
  1026. IsFriend bool `protobuf:"varint,7,opt,name=is_friend,json=isFriend,proto3" json:"is_friend,omitempty"` // 是否是好友
  1027. IsFollowing bool `protobuf:"varint,8,opt,name=is_following,json=isFollowing,proto3" json:"is_following,omitempty"` // 是否关注
  1028. CreatedOn int64 `protobuf:"varint,9,opt,name=created_on,json=createdOn,proto3" json:"created_on,omitempty"` // 注册时间
  1029. Follows int64 `protobuf:"varint,10,opt,name=follows,proto3" json:"follows,omitempty"` // 关注数
  1030. Fans int64 `protobuf:"varint,11,opt,name=fans,proto3" json:"fans,omitempty"` // 粉丝数
  1031. GetLikesCount int32 `protobuf:"varint,12,opt,name=get_likes_count,json=getLikesCount,proto3" json:"get_likes_count,omitempty"` //获得点赞数量
  1032. GetCollectionCount int32 `protobuf:"varint,13,opt,name=get_collection_count,json=getCollectionCount,proto3" json:"get_collection_count,omitempty"` //获得收藏的数量
  1033. }
  1034. func (x *GetUserProfileRes) Reset() {
  1035. *x = GetUserProfileRes{}
  1036. if protoimpl.UnsafeEnabled {
  1037. mi := &file_proto_slowwild_proto_msgTypes[19]
  1038. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1039. ms.StoreMessageInfo(mi)
  1040. }
  1041. }
  1042. func (x *GetUserProfileRes) String() string {
  1043. return protoimpl.X.MessageStringOf(x)
  1044. }
  1045. func (*GetUserProfileRes) ProtoMessage() {}
  1046. func (x *GetUserProfileRes) ProtoReflect() protoreflect.Message {
  1047. mi := &file_proto_slowwild_proto_msgTypes[19]
  1048. if protoimpl.UnsafeEnabled && x != nil {
  1049. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1050. if ms.LoadMessageInfo() == nil {
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. return ms
  1054. }
  1055. return mi.MessageOf(x)
  1056. }
  1057. // Deprecated: Use GetUserProfileRes.ProtoReflect.Descriptor instead.
  1058. func (*GetUserProfileRes) Descriptor() ([]byte, []int) {
  1059. return file_proto_slowwild_proto_rawDescGZIP(), []int{19}
  1060. }
  1061. func (x *GetUserProfileRes) GetId() int64 {
  1062. if x != nil {
  1063. return x.Id
  1064. }
  1065. return 0
  1066. }
  1067. func (x *GetUserProfileRes) GetNickname() string {
  1068. if x != nil {
  1069. return x.Nickname
  1070. }
  1071. return ""
  1072. }
  1073. func (x *GetUserProfileRes) GetUsername() string {
  1074. if x != nil {
  1075. return x.Username
  1076. }
  1077. return ""
  1078. }
  1079. func (x *GetUserProfileRes) GetStatus() int32 {
  1080. if x != nil {
  1081. return x.Status
  1082. }
  1083. return 0
  1084. }
  1085. func (x *GetUserProfileRes) GetAvatar() string {
  1086. if x != nil {
  1087. return x.Avatar
  1088. }
  1089. return ""
  1090. }
  1091. func (x *GetUserProfileRes) GetIsFriend() bool {
  1092. if x != nil {
  1093. return x.IsFriend
  1094. }
  1095. return false
  1096. }
  1097. func (x *GetUserProfileRes) GetIsFollowing() bool {
  1098. if x != nil {
  1099. return x.IsFollowing
  1100. }
  1101. return false
  1102. }
  1103. func (x *GetUserProfileRes) GetCreatedOn() int64 {
  1104. if x != nil {
  1105. return x.CreatedOn
  1106. }
  1107. return 0
  1108. }
  1109. func (x *GetUserProfileRes) GetFollows() int64 {
  1110. if x != nil {
  1111. return x.Follows
  1112. }
  1113. return 0
  1114. }
  1115. func (x *GetUserProfileRes) GetFans() int64 {
  1116. if x != nil {
  1117. return x.Fans
  1118. }
  1119. return 0
  1120. }
  1121. func (x *GetUserProfileRes) GetGetLikesCount() int32 {
  1122. if x != nil {
  1123. return x.GetLikesCount
  1124. }
  1125. return 0
  1126. }
  1127. func (x *GetUserProfileRes) GetGetCollectionCount() int32 {
  1128. if x != nil {
  1129. return x.GetCollectionCount
  1130. }
  1131. return 0
  1132. }
  1133. // 模糊查询用户
  1134. type SearchUsernameReq struct {
  1135. state protoimpl.MessageState
  1136. sizeCache protoimpl.SizeCache
  1137. unknownFields protoimpl.UnknownFields
  1138. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  1139. }
  1140. func (x *SearchUsernameReq) Reset() {
  1141. *x = SearchUsernameReq{}
  1142. if protoimpl.UnsafeEnabled {
  1143. mi := &file_proto_slowwild_proto_msgTypes[20]
  1144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1145. ms.StoreMessageInfo(mi)
  1146. }
  1147. }
  1148. func (x *SearchUsernameReq) String() string {
  1149. return protoimpl.X.MessageStringOf(x)
  1150. }
  1151. func (*SearchUsernameReq) ProtoMessage() {}
  1152. func (x *SearchUsernameReq) ProtoReflect() protoreflect.Message {
  1153. mi := &file_proto_slowwild_proto_msgTypes[20]
  1154. if protoimpl.UnsafeEnabled && x != nil {
  1155. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1156. if ms.LoadMessageInfo() == nil {
  1157. ms.StoreMessageInfo(mi)
  1158. }
  1159. return ms
  1160. }
  1161. return mi.MessageOf(x)
  1162. }
  1163. // Deprecated: Use SearchUsernameReq.ProtoReflect.Descriptor instead.
  1164. func (*SearchUsernameReq) Descriptor() ([]byte, []int) {
  1165. return file_proto_slowwild_proto_rawDescGZIP(), []int{20}
  1166. }
  1167. func (x *SearchUsernameReq) GetUsername() string {
  1168. if x != nil {
  1169. return x.Username
  1170. }
  1171. return ""
  1172. }
  1173. type SearchUsernameItem struct {
  1174. state protoimpl.MessageState
  1175. sizeCache protoimpl.SizeCache
  1176. unknownFields protoimpl.UnknownFields
  1177. Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
  1178. Avatar string `protobuf:"bytes,2,opt,name=avatar,proto3" json:"avatar,omitempty"`
  1179. Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"`
  1180. }
  1181. func (x *SearchUsernameItem) Reset() {
  1182. *x = SearchUsernameItem{}
  1183. if protoimpl.UnsafeEnabled {
  1184. mi := &file_proto_slowwild_proto_msgTypes[21]
  1185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1186. ms.StoreMessageInfo(mi)
  1187. }
  1188. }
  1189. func (x *SearchUsernameItem) String() string {
  1190. return protoimpl.X.MessageStringOf(x)
  1191. }
  1192. func (*SearchUsernameItem) ProtoMessage() {}
  1193. func (x *SearchUsernameItem) ProtoReflect() protoreflect.Message {
  1194. mi := &file_proto_slowwild_proto_msgTypes[21]
  1195. if protoimpl.UnsafeEnabled && x != nil {
  1196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1197. if ms.LoadMessageInfo() == nil {
  1198. ms.StoreMessageInfo(mi)
  1199. }
  1200. return ms
  1201. }
  1202. return mi.MessageOf(x)
  1203. }
  1204. // Deprecated: Use SearchUsernameItem.ProtoReflect.Descriptor instead.
  1205. func (*SearchUsernameItem) Descriptor() ([]byte, []int) {
  1206. return file_proto_slowwild_proto_rawDescGZIP(), []int{21}
  1207. }
  1208. func (x *SearchUsernameItem) GetUsername() string {
  1209. if x != nil {
  1210. return x.Username
  1211. }
  1212. return ""
  1213. }
  1214. func (x *SearchUsernameItem) GetAvatar() string {
  1215. if x != nil {
  1216. return x.Avatar
  1217. }
  1218. return ""
  1219. }
  1220. func (x *SearchUsernameItem) GetId() int64 {
  1221. if x != nil {
  1222. return x.Id
  1223. }
  1224. return 0
  1225. }
  1226. type SearchUsernameRes struct {
  1227. state protoimpl.MessageState
  1228. sizeCache protoimpl.SizeCache
  1229. unknownFields protoimpl.UnknownFields
  1230. List []*SearchUsernameItem `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1231. }
  1232. func (x *SearchUsernameRes) Reset() {
  1233. *x = SearchUsernameRes{}
  1234. if protoimpl.UnsafeEnabled {
  1235. mi := &file_proto_slowwild_proto_msgTypes[22]
  1236. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1237. ms.StoreMessageInfo(mi)
  1238. }
  1239. }
  1240. func (x *SearchUsernameRes) String() string {
  1241. return protoimpl.X.MessageStringOf(x)
  1242. }
  1243. func (*SearchUsernameRes) ProtoMessage() {}
  1244. func (x *SearchUsernameRes) ProtoReflect() protoreflect.Message {
  1245. mi := &file_proto_slowwild_proto_msgTypes[22]
  1246. if protoimpl.UnsafeEnabled && x != nil {
  1247. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1248. if ms.LoadMessageInfo() == nil {
  1249. ms.StoreMessageInfo(mi)
  1250. }
  1251. return ms
  1252. }
  1253. return mi.MessageOf(x)
  1254. }
  1255. // Deprecated: Use SearchUsernameRes.ProtoReflect.Descriptor instead.
  1256. func (*SearchUsernameRes) Descriptor() ([]byte, []int) {
  1257. return file_proto_slowwild_proto_rawDescGZIP(), []int{22}
  1258. }
  1259. func (x *SearchUsernameRes) GetList() []*SearchUsernameItem {
  1260. if x != nil {
  1261. return x.List
  1262. }
  1263. return nil
  1264. }
  1265. var File_proto_slowwild_proto protoreflect.FileDescriptor
  1266. var file_proto_slowwild_proto_rawDesc = []byte{
  1267. 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64,
  1268. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64,
  1269. 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0xc0, 0x02, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x45,
  1270. 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1271. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18,
  1272. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1a, 0x0a,
  1273. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1274. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  1275. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  1276. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x05,
  1277. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73,
  1278. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61,
  1279. 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
  1280. 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73,
  1281. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x12,
  1282. 0x1e, 0x0a, 0x0a, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x09, 0x20,
  1283. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x73, 0x12,
  1284. 0x26, 0x0a, 0x0f, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6b, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75,
  1285. 0x6e, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x67, 0x65, 0x74, 0x4c, 0x69, 0x6b,
  1286. 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x67, 0x65, 0x74, 0x5f, 0x63,
  1287. 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
  1288. 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
  1289. 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x60, 0x0a, 0x08, 0x55, 0x73, 0x65,
  1290. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1291. 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18,
  1292. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1a, 0x0a,
  1293. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1294. 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  1295. 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x73, 0x65, 0x78, 0x22, 0x68, 0x0a, 0x0e, 0x46,
  1296. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2c, 0x0a,
  1297. 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x73, 0x6c,
  1298. 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65,
  1299. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x28, 0x0a, 0x10, 0x69,
  1300. 0x73, 0x5f, 0x6d, 0x75, 0x74, 0x75, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x18,
  1301. 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0e, 0x69, 0x73, 0x4d, 0x75, 0x74, 0x75, 0x61, 0x6c, 0x46,
  1302. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x22, 0x43, 0x0a, 0x13, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x6e,
  1303. 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05,
  1304. 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b,
  1305. 0x65, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01,
  1306. 0x28, 0x03, 0x52, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x22, 0x6f, 0x0a, 0x08, 0x4c, 0x6f,
  1307. 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  1308. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  1309. 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1310. 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65,
  1311. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a,
  1312. 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05,
  1313. 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0xa1, 0x01, 0x0a, 0x0b,
  1314. 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70,
  1315. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  1316. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1317. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
  1318. 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  1319. 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61,
  1320. 0x74, 0x61, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61,
  1321. 0x72, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
  1322. 0x73, 0x65, 0x78, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1323. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x22,
  1324. 0x20, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
  1325. 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69,
  1326. 0x64, 0x22, 0x41, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
  1327. 0x52, 0x65, 0x73, 0x70, 0x12, 0x2e, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01,
  1328. 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1329. 0x76, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x04,
  1330. 0x75, 0x73, 0x65, 0x72, 0x22, 0x51, 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72,
  1331. 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1332. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1333. 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  1334. 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03,
  1335. 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x45, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x55,
  1336. 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f,
  1337. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x73, 0x6c, 0x6f,
  1338. 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x73, 0x65, 0x72,
  1339. 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x4e,
  1340. 0x0a, 0x0d, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12,
  1341. 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1342. 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x66, 0x6f, 0x6c, 0x6c,
  1343. 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1344. 0x52, 0x0c, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x29,
  1345. 0x0a, 0x0d, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x12,
  1346. 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  1347. 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x55, 0x0a, 0x0f, 0x55, 0x6e, 0x46,
  1348. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07,
  1349. 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75,
  1350. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x29, 0x0a, 0x11, 0x75, 0x6e, 0x5f, 0x66, 0x6f, 0x6c, 0x6c,
  1351. 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1352. 0x52, 0x0e, 0x75, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  1353. 0x22, 0x2b, 0x0a, 0x0f, 0x55, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72,
  1354. 0x52, 0x65, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x01,
  1355. 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x73, 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x22, 0x7f, 0x0a,
  1356. 0x0f, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71,
  1357. 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1358. 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67,
  1359. 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61,
  1360. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03,
  1361. 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x71, 0x75,
  1362. 0x65, 0x72, 0x79, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  1363. 0x03, 0x52, 0x0b, 0x71, 0x75, 0x65, 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x5b,
  1364. 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x52, 0x65,
  1365. 0x73, 0x12, 0x32, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1366. 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1367. 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  1368. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02,
  1369. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x22, 0x7c, 0x0a, 0x0c, 0x47,
  1370. 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07, 0x75,
  1371. 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73,
  1372. 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a,
  1373. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a,
  1374. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52,
  1375. 0x04, 0x70, 0x61, 0x67, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x75,
  1376. 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x71, 0x75,
  1377. 0x65, 0x72, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x58, 0x0a, 0x0c, 0x47, 0x65, 0x74,
  1378. 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  1379. 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1380. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55,
  1381. 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x14, 0x0a,
  1382. 0x05, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x74, 0x6f,
  1383. 0x74, 0x61, 0x6c, 0x22, 0x48, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72,
  1384. 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72,
  1385. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72,
  1386. 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
  1387. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xf2, 0x02,
  1388. 0x0a, 0x11, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65,
  1389. 0x52, 0x65, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1390. 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1391. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1392. 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1393. 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73,
  1394. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61,
  1395. 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18, 0x05, 0x20,
  1396. 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x1b, 0x0a, 0x09, 0x69,
  1397. 0x73, 0x5f, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
  1398. 0x69, 0x73, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x66,
  1399. 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b,
  1400. 0x69, 0x73, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x63,
  1401. 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52,
  1402. 0x09, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x6f,
  1403. 0x6c, 0x6c, 0x6f, 0x77, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x66, 0x6f, 0x6c,
  1404. 0x6c, 0x6f, 0x77, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x61, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01,
  1405. 0x28, 0x03, 0x52, 0x04, 0x66, 0x61, 0x6e, 0x73, 0x12, 0x26, 0x0a, 0x0f, 0x67, 0x65, 0x74, 0x5f,
  1406. 0x6c, 0x69, 0x6b, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28,
  1407. 0x05, 0x52, 0x0d, 0x67, 0x65, 0x74, 0x4c, 0x69, 0x6b, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  1408. 0x12, 0x30, 0x0a, 0x14, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
  1409. 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12,
  1410. 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75,
  1411. 0x6e, 0x74, 0x22, 0x2f, 0x0a, 0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72,
  1412. 0x6e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e,
  1413. 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e,
  1414. 0x61, 0x6d, 0x65, 0x22, 0x58, 0x0a, 0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65,
  1415. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  1416. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  1417. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x18,
  1418. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12, 0x0e, 0x0a,
  1419. 0x02, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22, 0x4b, 0x0a,
  1420. 0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x52,
  1421. 0x65, 0x73, 0x12, 0x36, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
  1422. 0x32, 0x22, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65,
  1423. 0x72, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,
  1424. 0x49, 0x74, 0x65, 0x6d, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x32, 0xa8, 0x06, 0x0a, 0x0e, 0x53,
  1425. 0x6c, 0x6f, 0x77, 0x57, 0x69, 0x6c, 0x64, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x12, 0x46, 0x0a,
  1426. 0x05, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x18, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c,
  1427. 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71,
  1428. 0x1a, 0x23, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65,
  1429. 0x72, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
  1430. 0x65, 0x72, 0x52, 0x73, 0x70, 0x12, 0x4c, 0x0a, 0x08, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65,
  1431. 0x72, 0x12, 0x1b, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76,
  1432. 0x65, 0x72, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x23,
  1433. 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e,
  1434. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x41, 0x6e, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  1435. 0x52, 0x73, 0x70, 0x12, 0x4e, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e,
  1436. 0x66, 0x6f, 0x12, 0x1e, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1437. 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  1438. 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1439. 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  1440. 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x08, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x12,
  1441. 0x1b, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1442. 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x73,
  1443. 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x69,
  1444. 0x6e, 0x64, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x4a, 0x0a, 0x0a, 0x55, 0x73,
  1445. 0x65, 0x72, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x1d, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77,
  1446. 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1447. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1448. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x55,
  1449. 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x55, 0x6e, 0x55, 0x73, 0x65, 0x72,
  1450. 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c,
  1451. 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1452. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1453. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x55, 0x6e, 0x46, 0x6f, 0x6c, 0x6c, 0x6f,
  1454. 0x77, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x12, 0x4b, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x46,
  1455. 0x61, 0x6e, 0x73, 0x12, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65,
  1456. 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e,
  1457. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73,
  1458. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69,
  1459. 0x6e, 0x67, 0x52, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c,
  1460. 0x6f, 0x77, 0x73, 0x12, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65,
  1461. 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69, 0x6e,
  1462. 0x67, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73,
  1463. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x69,
  1464. 0x6e, 0x67, 0x52, 0x65, 0x73, 0x12, 0x56, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  1465. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69,
  1466. 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72,
  1467. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x73, 0x6c, 0x6f,
  1468. 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x55,
  1469. 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x73, 0x12, 0x56, 0x0a,
  1470. 0x0e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12,
  1471. 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1472. 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x52,
  1473. 0x65, 0x71, 0x1a, 0x21, 0x2e, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72,
  1474. 0x76, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61,
  1475. 0x6d, 0x65, 0x52, 0x65, 0x73, 0x42, 0x19, 0x5a, 0x17, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c,
  1476. 0x64, 0x2f, 0x73, 0x6c, 0x6f, 0x77, 0x77, 0x69, 0x6c, 0x64, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
  1477. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1478. }
  1479. var (
  1480. file_proto_slowwild_proto_rawDescOnce sync.Once
  1481. file_proto_slowwild_proto_rawDescData = file_proto_slowwild_proto_rawDesc
  1482. )
  1483. func file_proto_slowwild_proto_rawDescGZIP() []byte {
  1484. file_proto_slowwild_proto_rawDescOnce.Do(func() {
  1485. file_proto_slowwild_proto_rawDescData = protoimpl.X.CompressGZIP(file_proto_slowwild_proto_rawDescData)
  1486. })
  1487. return file_proto_slowwild_proto_rawDescData
  1488. }
  1489. var file_proto_slowwild_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  1490. var file_proto_slowwild_proto_goTypes = []any{
  1491. (*UserEntity)(nil), // 0: slowwildserver.UserEntity
  1492. (*UserInfo)(nil), // 1: slowwildserver.UserInfo
  1493. (*FollowUserInfo)(nil), // 2: slowwildserver.FollowUserInfo
  1494. (*LoginAndRegisterRsp)(nil), // 3: slowwildserver.LoginAndRegisterRsp
  1495. (*LoginReq)(nil), // 4: slowwildserver.LoginReq
  1496. (*RegisterReq)(nil), // 5: slowwildserver.RegisterReq
  1497. (*GetUserInfoReq)(nil), // 6: slowwildserver.GetUserInfoReq
  1498. (*GetUserInfoResp)(nil), // 7: slowwildserver.GetUserInfoResp
  1499. (*FindUserReq)(nil), // 8: slowwildserver.FindUserReq
  1500. (*FindUserResp)(nil), // 9: slowwildserver.FindUserResp
  1501. (*FollowUserReq)(nil), // 10: slowwildserver.FollowUserReq
  1502. (*FollowUserRes)(nil), // 11: slowwildserver.FollowUserRes
  1503. (*UnFollowUserReq)(nil), // 12: slowwildserver.UnFollowUserReq
  1504. (*UnFollowUserRes)(nil), // 13: slowwildserver.UnFollowUserRes
  1505. (*GetFollowingReq)(nil), // 14: slowwildserver.GetFollowingReq
  1506. (*GetFollowingRes)(nil), // 15: slowwildserver.GetFollowingRes
  1507. (*GetFollowReq)(nil), // 16: slowwildserver.GetFollowReq
  1508. (*GetFollowRes)(nil), // 17: slowwildserver.GetFollowRes
  1509. (*GetUserProfileReq)(nil), // 18: slowwildserver.GetUserProfileReq
  1510. (*GetUserProfileRes)(nil), // 19: slowwildserver.GetUserProfileRes
  1511. (*SearchUsernameReq)(nil), // 20: slowwildserver.SearchUsernameReq
  1512. (*SearchUsernameItem)(nil), // 21: slowwildserver.SearchUsernameItem
  1513. (*SearchUsernameRes)(nil), // 22: slowwildserver.SearchUsernameRes
  1514. }
  1515. var file_proto_slowwild_proto_depIdxs = []int32{
  1516. 1, // 0: slowwildserver.FollowUserInfo.user:type_name -> slowwildserver.UserInfo
  1517. 0, // 1: slowwildserver.GetUserInfoResp.user:type_name -> slowwildserver.UserEntity
  1518. 1, // 2: slowwildserver.FindUserResp.user_list:type_name -> slowwildserver.UserInfo
  1519. 2, // 3: slowwildserver.GetFollowingRes.list:type_name -> slowwildserver.FollowUserInfo
  1520. 2, // 4: slowwildserver.GetFollowRes.list:type_name -> slowwildserver.FollowUserInfo
  1521. 21, // 5: slowwildserver.SearchUsernameRes.list:type_name -> slowwildserver.SearchUsernameItem
  1522. 4, // 6: slowwildserver.SlowWildServer.Login:input_type -> slowwildserver.LoginReq
  1523. 5, // 7: slowwildserver.SlowWildServer.Register:input_type -> slowwildserver.RegisterReq
  1524. 6, // 8: slowwildserver.SlowWildServer.GetUserInfo:input_type -> slowwildserver.GetUserInfoReq
  1525. 8, // 9: slowwildserver.SlowWildServer.FindUser:input_type -> slowwildserver.FindUserReq
  1526. 10, // 10: slowwildserver.SlowWildServer.UserFollow:input_type -> slowwildserver.FollowUserReq
  1527. 12, // 11: slowwildserver.SlowWildServer.UnUserFollow:input_type -> slowwildserver.UnFollowUserReq
  1528. 14, // 12: slowwildserver.SlowWildServer.GetFans:input_type -> slowwildserver.GetFollowingReq
  1529. 14, // 13: slowwildserver.SlowWildServer.GetFollows:input_type -> slowwildserver.GetFollowingReq
  1530. 18, // 14: slowwildserver.SlowWildServer.GetUserProfile:input_type -> slowwildserver.GetUserProfileReq
  1531. 20, // 15: slowwildserver.SlowWildServer.SearchUsername:input_type -> slowwildserver.SearchUsernameReq
  1532. 3, // 16: slowwildserver.SlowWildServer.Login:output_type -> slowwildserver.LoginAndRegisterRsp
  1533. 3, // 17: slowwildserver.SlowWildServer.Register:output_type -> slowwildserver.LoginAndRegisterRsp
  1534. 7, // 18: slowwildserver.SlowWildServer.GetUserInfo:output_type -> slowwildserver.GetUserInfoResp
  1535. 9, // 19: slowwildserver.SlowWildServer.FindUser:output_type -> slowwildserver.FindUserResp
  1536. 11, // 20: slowwildserver.SlowWildServer.UserFollow:output_type -> slowwildserver.FollowUserRes
  1537. 13, // 21: slowwildserver.SlowWildServer.UnUserFollow:output_type -> slowwildserver.UnFollowUserRes
  1538. 15, // 22: slowwildserver.SlowWildServer.GetFans:output_type -> slowwildserver.GetFollowingRes
  1539. 15, // 23: slowwildserver.SlowWildServer.GetFollows:output_type -> slowwildserver.GetFollowingRes
  1540. 19, // 24: slowwildserver.SlowWildServer.GetUserProfile:output_type -> slowwildserver.GetUserProfileRes
  1541. 22, // 25: slowwildserver.SlowWildServer.SearchUsername:output_type -> slowwildserver.SearchUsernameRes
  1542. 16, // [16:26] is the sub-list for method output_type
  1543. 6, // [6:16] is the sub-list for method input_type
  1544. 6, // [6:6] is the sub-list for extension type_name
  1545. 6, // [6:6] is the sub-list for extension extendee
  1546. 0, // [0:6] is the sub-list for field type_name
  1547. }
  1548. func init() { file_proto_slowwild_proto_init() }
  1549. func file_proto_slowwild_proto_init() {
  1550. if File_proto_slowwild_proto != nil {
  1551. return
  1552. }
  1553. if !protoimpl.UnsafeEnabled {
  1554. file_proto_slowwild_proto_msgTypes[0].Exporter = func(v any, i int) any {
  1555. switch v := v.(*UserEntity); i {
  1556. case 0:
  1557. return &v.state
  1558. case 1:
  1559. return &v.sizeCache
  1560. case 2:
  1561. return &v.unknownFields
  1562. default:
  1563. return nil
  1564. }
  1565. }
  1566. file_proto_slowwild_proto_msgTypes[1].Exporter = func(v any, i int) any {
  1567. switch v := v.(*UserInfo); i {
  1568. case 0:
  1569. return &v.state
  1570. case 1:
  1571. return &v.sizeCache
  1572. case 2:
  1573. return &v.unknownFields
  1574. default:
  1575. return nil
  1576. }
  1577. }
  1578. file_proto_slowwild_proto_msgTypes[2].Exporter = func(v any, i int) any {
  1579. switch v := v.(*FollowUserInfo); i {
  1580. case 0:
  1581. return &v.state
  1582. case 1:
  1583. return &v.sizeCache
  1584. case 2:
  1585. return &v.unknownFields
  1586. default:
  1587. return nil
  1588. }
  1589. }
  1590. file_proto_slowwild_proto_msgTypes[3].Exporter = func(v any, i int) any {
  1591. switch v := v.(*LoginAndRegisterRsp); i {
  1592. case 0:
  1593. return &v.state
  1594. case 1:
  1595. return &v.sizeCache
  1596. case 2:
  1597. return &v.unknownFields
  1598. default:
  1599. return nil
  1600. }
  1601. }
  1602. file_proto_slowwild_proto_msgTypes[4].Exporter = func(v any, i int) any {
  1603. switch v := v.(*LoginReq); i {
  1604. case 0:
  1605. return &v.state
  1606. case 1:
  1607. return &v.sizeCache
  1608. case 2:
  1609. return &v.unknownFields
  1610. default:
  1611. return nil
  1612. }
  1613. }
  1614. file_proto_slowwild_proto_msgTypes[5].Exporter = func(v any, i int) any {
  1615. switch v := v.(*RegisterReq); i {
  1616. case 0:
  1617. return &v.state
  1618. case 1:
  1619. return &v.sizeCache
  1620. case 2:
  1621. return &v.unknownFields
  1622. default:
  1623. return nil
  1624. }
  1625. }
  1626. file_proto_slowwild_proto_msgTypes[6].Exporter = func(v any, i int) any {
  1627. switch v := v.(*GetUserInfoReq); i {
  1628. case 0:
  1629. return &v.state
  1630. case 1:
  1631. return &v.sizeCache
  1632. case 2:
  1633. return &v.unknownFields
  1634. default:
  1635. return nil
  1636. }
  1637. }
  1638. file_proto_slowwild_proto_msgTypes[7].Exporter = func(v any, i int) any {
  1639. switch v := v.(*GetUserInfoResp); i {
  1640. case 0:
  1641. return &v.state
  1642. case 1:
  1643. return &v.sizeCache
  1644. case 2:
  1645. return &v.unknownFields
  1646. default:
  1647. return nil
  1648. }
  1649. }
  1650. file_proto_slowwild_proto_msgTypes[8].Exporter = func(v any, i int) any {
  1651. switch v := v.(*FindUserReq); i {
  1652. case 0:
  1653. return &v.state
  1654. case 1:
  1655. return &v.sizeCache
  1656. case 2:
  1657. return &v.unknownFields
  1658. default:
  1659. return nil
  1660. }
  1661. }
  1662. file_proto_slowwild_proto_msgTypes[9].Exporter = func(v any, i int) any {
  1663. switch v := v.(*FindUserResp); i {
  1664. case 0:
  1665. return &v.state
  1666. case 1:
  1667. return &v.sizeCache
  1668. case 2:
  1669. return &v.unknownFields
  1670. default:
  1671. return nil
  1672. }
  1673. }
  1674. file_proto_slowwild_proto_msgTypes[10].Exporter = func(v any, i int) any {
  1675. switch v := v.(*FollowUserReq); i {
  1676. case 0:
  1677. return &v.state
  1678. case 1:
  1679. return &v.sizeCache
  1680. case 2:
  1681. return &v.unknownFields
  1682. default:
  1683. return nil
  1684. }
  1685. }
  1686. file_proto_slowwild_proto_msgTypes[11].Exporter = func(v any, i int) any {
  1687. switch v := v.(*FollowUserRes); i {
  1688. case 0:
  1689. return &v.state
  1690. case 1:
  1691. return &v.sizeCache
  1692. case 2:
  1693. return &v.unknownFields
  1694. default:
  1695. return nil
  1696. }
  1697. }
  1698. file_proto_slowwild_proto_msgTypes[12].Exporter = func(v any, i int) any {
  1699. switch v := v.(*UnFollowUserReq); i {
  1700. case 0:
  1701. return &v.state
  1702. case 1:
  1703. return &v.sizeCache
  1704. case 2:
  1705. return &v.unknownFields
  1706. default:
  1707. return nil
  1708. }
  1709. }
  1710. file_proto_slowwild_proto_msgTypes[13].Exporter = func(v any, i int) any {
  1711. switch v := v.(*UnFollowUserRes); i {
  1712. case 0:
  1713. return &v.state
  1714. case 1:
  1715. return &v.sizeCache
  1716. case 2:
  1717. return &v.unknownFields
  1718. default:
  1719. return nil
  1720. }
  1721. }
  1722. file_proto_slowwild_proto_msgTypes[14].Exporter = func(v any, i int) any {
  1723. switch v := v.(*GetFollowingReq); i {
  1724. case 0:
  1725. return &v.state
  1726. case 1:
  1727. return &v.sizeCache
  1728. case 2:
  1729. return &v.unknownFields
  1730. default:
  1731. return nil
  1732. }
  1733. }
  1734. file_proto_slowwild_proto_msgTypes[15].Exporter = func(v any, i int) any {
  1735. switch v := v.(*GetFollowingRes); i {
  1736. case 0:
  1737. return &v.state
  1738. case 1:
  1739. return &v.sizeCache
  1740. case 2:
  1741. return &v.unknownFields
  1742. default:
  1743. return nil
  1744. }
  1745. }
  1746. file_proto_slowwild_proto_msgTypes[16].Exporter = func(v any, i int) any {
  1747. switch v := v.(*GetFollowReq); i {
  1748. case 0:
  1749. return &v.state
  1750. case 1:
  1751. return &v.sizeCache
  1752. case 2:
  1753. return &v.unknownFields
  1754. default:
  1755. return nil
  1756. }
  1757. }
  1758. file_proto_slowwild_proto_msgTypes[17].Exporter = func(v any, i int) any {
  1759. switch v := v.(*GetFollowRes); i {
  1760. case 0:
  1761. return &v.state
  1762. case 1:
  1763. return &v.sizeCache
  1764. case 2:
  1765. return &v.unknownFields
  1766. default:
  1767. return nil
  1768. }
  1769. }
  1770. file_proto_slowwild_proto_msgTypes[18].Exporter = func(v any, i int) any {
  1771. switch v := v.(*GetUserProfileReq); i {
  1772. case 0:
  1773. return &v.state
  1774. case 1:
  1775. return &v.sizeCache
  1776. case 2:
  1777. return &v.unknownFields
  1778. default:
  1779. return nil
  1780. }
  1781. }
  1782. file_proto_slowwild_proto_msgTypes[19].Exporter = func(v any, i int) any {
  1783. switch v := v.(*GetUserProfileRes); i {
  1784. case 0:
  1785. return &v.state
  1786. case 1:
  1787. return &v.sizeCache
  1788. case 2:
  1789. return &v.unknownFields
  1790. default:
  1791. return nil
  1792. }
  1793. }
  1794. file_proto_slowwild_proto_msgTypes[20].Exporter = func(v any, i int) any {
  1795. switch v := v.(*SearchUsernameReq); i {
  1796. case 0:
  1797. return &v.state
  1798. case 1:
  1799. return &v.sizeCache
  1800. case 2:
  1801. return &v.unknownFields
  1802. default:
  1803. return nil
  1804. }
  1805. }
  1806. file_proto_slowwild_proto_msgTypes[21].Exporter = func(v any, i int) any {
  1807. switch v := v.(*SearchUsernameItem); i {
  1808. case 0:
  1809. return &v.state
  1810. case 1:
  1811. return &v.sizeCache
  1812. case 2:
  1813. return &v.unknownFields
  1814. default:
  1815. return nil
  1816. }
  1817. }
  1818. file_proto_slowwild_proto_msgTypes[22].Exporter = func(v any, i int) any {
  1819. switch v := v.(*SearchUsernameRes); i {
  1820. case 0:
  1821. return &v.state
  1822. case 1:
  1823. return &v.sizeCache
  1824. case 2:
  1825. return &v.unknownFields
  1826. default:
  1827. return nil
  1828. }
  1829. }
  1830. }
  1831. type x struct{}
  1832. out := protoimpl.TypeBuilder{
  1833. File: protoimpl.DescBuilder{
  1834. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1835. RawDescriptor: file_proto_slowwild_proto_rawDesc,
  1836. NumEnums: 0,
  1837. NumMessages: 23,
  1838. NumExtensions: 0,
  1839. NumServices: 1,
  1840. },
  1841. GoTypes: file_proto_slowwild_proto_goTypes,
  1842. DependencyIndexes: file_proto_slowwild_proto_depIdxs,
  1843. MessageInfos: file_proto_slowwild_proto_msgTypes,
  1844. }.Build()
  1845. File_proto_slowwild_proto = out.File
  1846. file_proto_slowwild_proto_rawDesc = nil
  1847. file_proto_slowwild_proto_goTypes = nil
  1848. file_proto_slowwild_proto_depIdxs = nil
  1849. }