biService_grpc.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523
  1. // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
  2. // versions:
  3. // - protoc-gen-go-grpc v1.3.0
  4. // - protoc v3.15.1
  5. // source: biService.proto
  6. package pb
  7. import (
  8. context "context"
  9. grpc "google.golang.org/grpc"
  10. codes "google.golang.org/grpc/codes"
  11. status "google.golang.org/grpc/status"
  12. )
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the grpc package it is being compiled against.
  15. // Requires gRPC-Go v1.32.0 or later.
  16. const _ = grpc.SupportPackageIsVersion7
  17. const (
  18. BiService_MyDataAsset_FullMethodName = "/BiService/myDataAsset"
  19. BiService_AddProject_FullMethodName = "/BiService/addProject"
  20. BiService_GetInfoId_FullMethodName = "/BiService/getInfoId"
  21. BiService_DrawClue_FullMethodName = "/BiService/drawClue"
  22. BiService_Call_FullMethodName = "/BiService/Call"
  23. BiService_DistributeClue_FullMethodName = "/BiService/distributeClue"
  24. BiService_ClueImport_FullMethodName = "/BiService/clueImport"
  25. BiService_ClueAdd_FullMethodName = "/BiService/clueAdd"
  26. BiService_ClueImportTt_FullMethodName = "/BiService/clueImportTt"
  27. <<<<<<< HEAD
  28. BiService_AutoFollow_FullMethodName = "/BiService/autoFollow"
  29. =======
  30. BiService_SqlManage_FullMethodName = "/BiService/sqlManage"
  31. BiService_MyInfo_FullMethodName = "/BiService/myInfo"
  32. >>>>>>> master
  33. )
  34. // BiServiceClient is the client API for BiService service.
  35. //
  36. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
  37. type BiServiceClient interface {
  38. MyDataAsset(ctx context.Context, in *MyDataAssetReq, opts ...grpc.CallOption) (*MyDataAssetResp, error)
  39. AddProject(ctx context.Context, in *AddProjectReq, opts ...grpc.CallOption) (*AddProjectResp, error)
  40. GetInfoId(ctx context.Context, in *AddProjectReq, opts ...grpc.CallOption) (*GetInfoIdResp, error)
  41. DrawClue(ctx context.Context, in *DrawClueReq, opts ...grpc.CallOption) (*AddProjectResp, error)
  42. Call(ctx context.Context, in *CallReq, opts ...grpc.CallOption) (*Resp, error)
  43. DistributeClue(ctx context.Context, in *DistributeClueReq, opts ...grpc.CallOption) (*AddProjectResp, error)
  44. ClueImport(ctx context.Context, in *ClueImportReq, opts ...grpc.CallOption) (*ClueImportResp, error)
  45. ClueAdd(ctx context.Context, in *ClueAddReq, opts ...grpc.CallOption) (*AddProjectResp, error)
  46. ClueImportTt(ctx context.Context, in *ClueImportReq, opts ...grpc.CallOption) (*ClueImportResp, error)
  47. <<<<<<< HEAD
  48. AutoFollow(ctx context.Context, in *CallReq, opts ...grpc.CallOption) (*ClueImportResp, error)
  49. =======
  50. SqlManage(ctx context.Context, in *SqlManageReq, opts ...grpc.CallOption) (*Reply, error)
  51. MyInfo(ctx context.Context, in *MyInfoReq, opts ...grpc.CallOption) (*Reply, error)
  52. >>>>>>> master
  53. }
  54. type biServiceClient struct {
  55. cc grpc.ClientConnInterface
  56. }
  57. func NewBiServiceClient(cc grpc.ClientConnInterface) BiServiceClient {
  58. return &biServiceClient{cc}
  59. }
  60. func (c *biServiceClient) MyDataAsset(ctx context.Context, in *MyDataAssetReq, opts ...grpc.CallOption) (*MyDataAssetResp, error) {
  61. out := new(MyDataAssetResp)
  62. err := c.cc.Invoke(ctx, BiService_MyDataAsset_FullMethodName, in, out, opts...)
  63. if err != nil {
  64. return nil, err
  65. }
  66. return out, nil
  67. }
  68. func (c *biServiceClient) AddProject(ctx context.Context, in *AddProjectReq, opts ...grpc.CallOption) (*AddProjectResp, error) {
  69. out := new(AddProjectResp)
  70. err := c.cc.Invoke(ctx, BiService_AddProject_FullMethodName, in, out, opts...)
  71. if err != nil {
  72. return nil, err
  73. }
  74. return out, nil
  75. }
  76. func (c *biServiceClient) GetInfoId(ctx context.Context, in *AddProjectReq, opts ...grpc.CallOption) (*GetInfoIdResp, error) {
  77. out := new(GetInfoIdResp)
  78. err := c.cc.Invoke(ctx, BiService_GetInfoId_FullMethodName, in, out, opts...)
  79. if err != nil {
  80. return nil, err
  81. }
  82. return out, nil
  83. }
  84. func (c *biServiceClient) DrawClue(ctx context.Context, in *DrawClueReq, opts ...grpc.CallOption) (*AddProjectResp, error) {
  85. out := new(AddProjectResp)
  86. err := c.cc.Invoke(ctx, BiService_DrawClue_FullMethodName, in, out, opts...)
  87. if err != nil {
  88. return nil, err
  89. }
  90. return out, nil
  91. }
  92. func (c *biServiceClient) Call(ctx context.Context, in *CallReq, opts ...grpc.CallOption) (*Resp, error) {
  93. out := new(Resp)
  94. err := c.cc.Invoke(ctx, BiService_Call_FullMethodName, in, out, opts...)
  95. if err != nil {
  96. return nil, err
  97. }
  98. return out, nil
  99. }
  100. func (c *biServiceClient) DistributeClue(ctx context.Context, in *DistributeClueReq, opts ...grpc.CallOption) (*AddProjectResp, error) {
  101. out := new(AddProjectResp)
  102. err := c.cc.Invoke(ctx, BiService_DistributeClue_FullMethodName, in, out, opts...)
  103. if err != nil {
  104. return nil, err
  105. }
  106. return out, nil
  107. }
  108. func (c *biServiceClient) ClueImport(ctx context.Context, in *ClueImportReq, opts ...grpc.CallOption) (*ClueImportResp, error) {
  109. out := new(ClueImportResp)
  110. err := c.cc.Invoke(ctx, BiService_ClueImport_FullMethodName, in, out, opts...)
  111. if err != nil {
  112. return nil, err
  113. }
  114. return out, nil
  115. }
  116. func (c *biServiceClient) ClueAdd(ctx context.Context, in *ClueAddReq, opts ...grpc.CallOption) (*AddProjectResp, error) {
  117. out := new(AddProjectResp)
  118. err := c.cc.Invoke(ctx, BiService_ClueAdd_FullMethodName, in, out, opts...)
  119. if err != nil {
  120. return nil, err
  121. }
  122. return out, nil
  123. }
  124. func (c *biServiceClient) ClueImportTt(ctx context.Context, in *ClueImportReq, opts ...grpc.CallOption) (*ClueImportResp, error) {
  125. out := new(ClueImportResp)
  126. err := c.cc.Invoke(ctx, BiService_ClueImportTt_FullMethodName, in, out, opts...)
  127. if err != nil {
  128. return nil, err
  129. }
  130. return out, nil
  131. }
  132. <<<<<<< HEAD
  133. func (c *biServiceClient) AutoFollow(ctx context.Context, in *CallReq, opts ...grpc.CallOption) (*ClueImportResp, error) {
  134. out := new(ClueImportResp)
  135. err := c.cc.Invoke(ctx, BiService_AutoFollow_FullMethodName, in, out, opts...)
  136. =======
  137. func (c *biServiceClient) SqlManage(ctx context.Context, in *SqlManageReq, opts ...grpc.CallOption) (*Reply, error) {
  138. out := new(Reply)
  139. err := c.cc.Invoke(ctx, BiService_SqlManage_FullMethodName, in, out, opts...)
  140. if err != nil {
  141. return nil, err
  142. }
  143. return out, nil
  144. }
  145. func (c *biServiceClient) MyInfo(ctx context.Context, in *MyInfoReq, opts ...grpc.CallOption) (*Reply, error) {
  146. out := new(Reply)
  147. err := c.cc.Invoke(ctx, BiService_MyInfo_FullMethodName, in, out, opts...)
  148. >>>>>>> master
  149. if err != nil {
  150. return nil, err
  151. }
  152. return out, nil
  153. }
  154. // BiServiceServer is the server API for BiService service.
  155. // All implementations must embed UnimplementedBiServiceServer
  156. // for forward compatibility
  157. type BiServiceServer interface {
  158. MyDataAsset(context.Context, *MyDataAssetReq) (*MyDataAssetResp, error)
  159. AddProject(context.Context, *AddProjectReq) (*AddProjectResp, error)
  160. GetInfoId(context.Context, *AddProjectReq) (*GetInfoIdResp, error)
  161. DrawClue(context.Context, *DrawClueReq) (*AddProjectResp, error)
  162. Call(context.Context, *CallReq) (*Resp, error)
  163. DistributeClue(context.Context, *DistributeClueReq) (*AddProjectResp, error)
  164. ClueImport(context.Context, *ClueImportReq) (*ClueImportResp, error)
  165. ClueAdd(context.Context, *ClueAddReq) (*AddProjectResp, error)
  166. ClueImportTt(context.Context, *ClueImportReq) (*ClueImportResp, error)
  167. <<<<<<< HEAD
  168. AutoFollow(context.Context, *CallReq) (*ClueImportResp, error)
  169. =======
  170. SqlManage(context.Context, *SqlManageReq) (*Reply, error)
  171. MyInfo(context.Context, *MyInfoReq) (*Reply, error)
  172. >>>>>>> master
  173. mustEmbedUnimplementedBiServiceServer()
  174. }
  175. // UnimplementedBiServiceServer must be embedded to have forward compatible implementations.
  176. type UnimplementedBiServiceServer struct {
  177. }
  178. func (UnimplementedBiServiceServer) MyDataAsset(context.Context, *MyDataAssetReq) (*MyDataAssetResp, error) {
  179. return nil, status.Errorf(codes.Unimplemented, "method MyDataAsset not implemented")
  180. }
  181. func (UnimplementedBiServiceServer) AddProject(context.Context, *AddProjectReq) (*AddProjectResp, error) {
  182. return nil, status.Errorf(codes.Unimplemented, "method AddProject not implemented")
  183. }
  184. func (UnimplementedBiServiceServer) GetInfoId(context.Context, *AddProjectReq) (*GetInfoIdResp, error) {
  185. return nil, status.Errorf(codes.Unimplemented, "method GetInfoId not implemented")
  186. }
  187. func (UnimplementedBiServiceServer) DrawClue(context.Context, *DrawClueReq) (*AddProjectResp, error) {
  188. return nil, status.Errorf(codes.Unimplemented, "method DrawClue not implemented")
  189. }
  190. func (UnimplementedBiServiceServer) Call(context.Context, *CallReq) (*Resp, error) {
  191. return nil, status.Errorf(codes.Unimplemented, "method Call not implemented")
  192. }
  193. func (UnimplementedBiServiceServer) DistributeClue(context.Context, *DistributeClueReq) (*AddProjectResp, error) {
  194. return nil, status.Errorf(codes.Unimplemented, "method DistributeClue not implemented")
  195. }
  196. func (UnimplementedBiServiceServer) ClueImport(context.Context, *ClueImportReq) (*ClueImportResp, error) {
  197. return nil, status.Errorf(codes.Unimplemented, "method ClueImport not implemented")
  198. }
  199. func (UnimplementedBiServiceServer) ClueAdd(context.Context, *ClueAddReq) (*AddProjectResp, error) {
  200. return nil, status.Errorf(codes.Unimplemented, "method ClueAdd not implemented")
  201. }
  202. func (UnimplementedBiServiceServer) ClueImportTt(context.Context, *ClueImportReq) (*ClueImportResp, error) {
  203. return nil, status.Errorf(codes.Unimplemented, "method ClueImportTt not implemented")
  204. }
  205. <<<<<<< HEAD
  206. func (UnimplementedBiServiceServer) AutoFollow(context.Context, *CallReq) (*ClueImportResp, error) {
  207. return nil, status.Errorf(codes.Unimplemented, "method AutoFollow not implemented")
  208. =======
  209. func (UnimplementedBiServiceServer) SqlManage(context.Context, *SqlManageReq) (*Reply, error) {
  210. return nil, status.Errorf(codes.Unimplemented, "method SqlManage not implemented")
  211. }
  212. func (UnimplementedBiServiceServer) MyInfo(context.Context, *MyInfoReq) (*Reply, error) {
  213. return nil, status.Errorf(codes.Unimplemented, "method MyInfo not implemented")
  214. >>>>>>> master
  215. }
  216. func (UnimplementedBiServiceServer) mustEmbedUnimplementedBiServiceServer() {}
  217. // UnsafeBiServiceServer may be embedded to opt out of forward compatibility for this service.
  218. // Use of this interface is not recommended, as added methods to BiServiceServer will
  219. // result in compilation errors.
  220. type UnsafeBiServiceServer interface {
  221. mustEmbedUnimplementedBiServiceServer()
  222. }
  223. func RegisterBiServiceServer(s grpc.ServiceRegistrar, srv BiServiceServer) {
  224. s.RegisterService(&BiService_ServiceDesc, srv)
  225. }
  226. func _BiService_MyDataAsset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  227. in := new(MyDataAssetReq)
  228. if err := dec(in); err != nil {
  229. return nil, err
  230. }
  231. if interceptor == nil {
  232. return srv.(BiServiceServer).MyDataAsset(ctx, in)
  233. }
  234. info := &grpc.UnaryServerInfo{
  235. Server: srv,
  236. FullMethod: BiService_MyDataAsset_FullMethodName,
  237. }
  238. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  239. return srv.(BiServiceServer).MyDataAsset(ctx, req.(*MyDataAssetReq))
  240. }
  241. return interceptor(ctx, in, info, handler)
  242. }
  243. func _BiService_AddProject_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  244. in := new(AddProjectReq)
  245. if err := dec(in); err != nil {
  246. return nil, err
  247. }
  248. if interceptor == nil {
  249. return srv.(BiServiceServer).AddProject(ctx, in)
  250. }
  251. info := &grpc.UnaryServerInfo{
  252. Server: srv,
  253. FullMethod: BiService_AddProject_FullMethodName,
  254. }
  255. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  256. return srv.(BiServiceServer).AddProject(ctx, req.(*AddProjectReq))
  257. }
  258. return interceptor(ctx, in, info, handler)
  259. }
  260. func _BiService_GetInfoId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  261. in := new(AddProjectReq)
  262. if err := dec(in); err != nil {
  263. return nil, err
  264. }
  265. if interceptor == nil {
  266. return srv.(BiServiceServer).GetInfoId(ctx, in)
  267. }
  268. info := &grpc.UnaryServerInfo{
  269. Server: srv,
  270. FullMethod: BiService_GetInfoId_FullMethodName,
  271. }
  272. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  273. return srv.(BiServiceServer).GetInfoId(ctx, req.(*AddProjectReq))
  274. }
  275. return interceptor(ctx, in, info, handler)
  276. }
  277. func _BiService_DrawClue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  278. in := new(DrawClueReq)
  279. if err := dec(in); err != nil {
  280. return nil, err
  281. }
  282. if interceptor == nil {
  283. return srv.(BiServiceServer).DrawClue(ctx, in)
  284. }
  285. info := &grpc.UnaryServerInfo{
  286. Server: srv,
  287. FullMethod: BiService_DrawClue_FullMethodName,
  288. }
  289. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  290. return srv.(BiServiceServer).DrawClue(ctx, req.(*DrawClueReq))
  291. }
  292. return interceptor(ctx, in, info, handler)
  293. }
  294. func _BiService_Call_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  295. in := new(CallReq)
  296. if err := dec(in); err != nil {
  297. return nil, err
  298. }
  299. if interceptor == nil {
  300. return srv.(BiServiceServer).Call(ctx, in)
  301. }
  302. info := &grpc.UnaryServerInfo{
  303. Server: srv,
  304. FullMethod: BiService_Call_FullMethodName,
  305. }
  306. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  307. return srv.(BiServiceServer).Call(ctx, req.(*CallReq))
  308. }
  309. return interceptor(ctx, in, info, handler)
  310. }
  311. func _BiService_DistributeClue_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  312. in := new(DistributeClueReq)
  313. if err := dec(in); err != nil {
  314. return nil, err
  315. }
  316. if interceptor == nil {
  317. return srv.(BiServiceServer).DistributeClue(ctx, in)
  318. }
  319. info := &grpc.UnaryServerInfo{
  320. Server: srv,
  321. FullMethod: BiService_DistributeClue_FullMethodName,
  322. }
  323. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  324. return srv.(BiServiceServer).DistributeClue(ctx, req.(*DistributeClueReq))
  325. }
  326. return interceptor(ctx, in, info, handler)
  327. }
  328. func _BiService_ClueImport_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  329. in := new(ClueImportReq)
  330. if err := dec(in); err != nil {
  331. return nil, err
  332. }
  333. if interceptor == nil {
  334. return srv.(BiServiceServer).ClueImport(ctx, in)
  335. }
  336. info := &grpc.UnaryServerInfo{
  337. Server: srv,
  338. FullMethod: BiService_ClueImport_FullMethodName,
  339. }
  340. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  341. return srv.(BiServiceServer).ClueImport(ctx, req.(*ClueImportReq))
  342. }
  343. return interceptor(ctx, in, info, handler)
  344. }
  345. func _BiService_ClueAdd_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  346. in := new(ClueAddReq)
  347. if err := dec(in); err != nil {
  348. return nil, err
  349. }
  350. if interceptor == nil {
  351. return srv.(BiServiceServer).ClueAdd(ctx, in)
  352. }
  353. info := &grpc.UnaryServerInfo{
  354. Server: srv,
  355. FullMethod: BiService_ClueAdd_FullMethodName,
  356. }
  357. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  358. return srv.(BiServiceServer).ClueAdd(ctx, req.(*ClueAddReq))
  359. }
  360. return interceptor(ctx, in, info, handler)
  361. }
  362. func _BiService_ClueImportTt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  363. in := new(ClueImportReq)
  364. if err := dec(in); err != nil {
  365. return nil, err
  366. }
  367. if interceptor == nil {
  368. return srv.(BiServiceServer).ClueImportTt(ctx, in)
  369. }
  370. info := &grpc.UnaryServerInfo{
  371. Server: srv,
  372. FullMethod: BiService_ClueImportTt_FullMethodName,
  373. }
  374. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  375. return srv.(BiServiceServer).ClueImportTt(ctx, req.(*ClueImportReq))
  376. }
  377. return interceptor(ctx, in, info, handler)
  378. }
  379. <<<<<<< HEAD
  380. func _BiService_AutoFollow_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  381. in := new(CallReq)
  382. =======
  383. func _BiService_SqlManage_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  384. in := new(SqlManageReq)
  385. >>>>>>> master
  386. if err := dec(in); err != nil {
  387. return nil, err
  388. }
  389. if interceptor == nil {
  390. <<<<<<< HEAD
  391. return srv.(BiServiceServer).AutoFollow(ctx, in)
  392. }
  393. info := &grpc.UnaryServerInfo{
  394. Server: srv,
  395. FullMethod: BiService_AutoFollow_FullMethodName,
  396. }
  397. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  398. return srv.(BiServiceServer).AutoFollow(ctx, req.(*CallReq))
  399. =======
  400. return srv.(BiServiceServer).SqlManage(ctx, in)
  401. }
  402. info := &grpc.UnaryServerInfo{
  403. Server: srv,
  404. FullMethod: BiService_SqlManage_FullMethodName,
  405. }
  406. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  407. return srv.(BiServiceServer).SqlManage(ctx, req.(*SqlManageReq))
  408. }
  409. return interceptor(ctx, in, info, handler)
  410. }
  411. func _BiService_MyInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  412. in := new(MyInfoReq)
  413. if err := dec(in); err != nil {
  414. return nil, err
  415. }
  416. if interceptor == nil {
  417. return srv.(BiServiceServer).MyInfo(ctx, in)
  418. }
  419. info := &grpc.UnaryServerInfo{
  420. Server: srv,
  421. FullMethod: BiService_MyInfo_FullMethodName,
  422. }
  423. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  424. return srv.(BiServiceServer).MyInfo(ctx, req.(*MyInfoReq))
  425. >>>>>>> master
  426. }
  427. return interceptor(ctx, in, info, handler)
  428. }
  429. // BiService_ServiceDesc is the grpc.ServiceDesc for BiService service.
  430. // It's only intended for direct use with grpc.RegisterService,
  431. // and not to be introspected or modified (even as a copy)
  432. var BiService_ServiceDesc = grpc.ServiceDesc{
  433. ServiceName: "BiService",
  434. HandlerType: (*BiServiceServer)(nil),
  435. Methods: []grpc.MethodDesc{
  436. {
  437. MethodName: "myDataAsset",
  438. Handler: _BiService_MyDataAsset_Handler,
  439. },
  440. {
  441. MethodName: "addProject",
  442. Handler: _BiService_AddProject_Handler,
  443. },
  444. {
  445. MethodName: "getInfoId",
  446. Handler: _BiService_GetInfoId_Handler,
  447. },
  448. {
  449. MethodName: "drawClue",
  450. Handler: _BiService_DrawClue_Handler,
  451. },
  452. {
  453. MethodName: "Call",
  454. Handler: _BiService_Call_Handler,
  455. },
  456. {
  457. MethodName: "distributeClue",
  458. Handler: _BiService_DistributeClue_Handler,
  459. },
  460. {
  461. MethodName: "clueImport",
  462. Handler: _BiService_ClueImport_Handler,
  463. },
  464. {
  465. MethodName: "clueAdd",
  466. Handler: _BiService_ClueAdd_Handler,
  467. },
  468. {
  469. MethodName: "clueImportTt",
  470. Handler: _BiService_ClueImportTt_Handler,
  471. },
  472. {
  473. <<<<<<< HEAD
  474. MethodName: "autoFollow",
  475. Handler: _BiService_AutoFollow_Handler,
  476. =======
  477. MethodName: "sqlManage",
  478. Handler: _BiService_SqlManage_Handler,
  479. },
  480. {
  481. MethodName: "myInfo",
  482. Handler: _BiService_MyInfo_Handler,
  483. >>>>>>> master
  484. },
  485. },
  486. Streams: []grpc.StreamDesc{},
  487. Metadata: "biService.proto",
  488. }