-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsmesher_grpc.pb.go
499 lines (460 loc) · 20.1 KB
/
smesher_grpc.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.3.0
// - protoc (unknown)
// source: spacemesh/v1/smesher.proto
package spacemeshv1
import (
context "context"
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
emptypb "google.golang.org/protobuf/types/known/emptypb"
)
// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
// Requires gRPC-Go v1.32.0 or later.
const _ = grpc.SupportPackageIsVersion7
const (
SmesherService_IsSmeshing_FullMethodName = "/spacemesh.v1.SmesherService/IsSmeshing"
SmesherService_StartSmeshing_FullMethodName = "/spacemesh.v1.SmesherService/StartSmeshing"
SmesherService_StopSmeshing_FullMethodName = "/spacemesh.v1.SmesherService/StopSmeshing"
SmesherService_SmesherIDs_FullMethodName = "/spacemesh.v1.SmesherService/SmesherIDs"
SmesherService_Coinbase_FullMethodName = "/spacemesh.v1.SmesherService/Coinbase"
SmesherService_SetCoinbase_FullMethodName = "/spacemesh.v1.SmesherService/SetCoinbase"
SmesherService_PostSetupStatus_FullMethodName = "/spacemesh.v1.SmesherService/PostSetupStatus"
SmesherService_PostSetupStatusStream_FullMethodName = "/spacemesh.v1.SmesherService/PostSetupStatusStream"
SmesherService_PostSetupProviders_FullMethodName = "/spacemesh.v1.SmesherService/PostSetupProviders"
SmesherService_PostConfig_FullMethodName = "/spacemesh.v1.SmesherService/PostConfig"
)
// SmesherServiceClient is the client API for SmesherService service.
//
// 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.
type SmesherServiceClient interface {
// Returns true iff node is currently smeshing
IsSmeshing(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*IsSmeshingResponse, error)
// Starts smeshing, after completing the post setup.
// Changing of the post setup options (e.g., number of units), after initial setup, is supported.
// Returns success if request is accepted by node , failure if it fails
StartSmeshing(ctx context.Context, in *StartSmeshingRequest, opts ...grpc.CallOption) (*StartSmeshingResponse, error)
// Stops smeshing, or the preceding post setup session, and optionally attempt to
// delete the post setup data files(s).
// Returns success if request is accepted by node, failure if it fails
StopSmeshing(ctx context.Context, in *StopSmeshingRequest, opts ...grpc.CallOption) (*StopSmeshingResponse, error)
// Get the Smesher IDs managed by the node
SmesherIDs(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*SmesherIDsResponse, error)
// Get the current coinbase
Coinbase(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*CoinbaseResponse, error)
// Set the coinbase
// Returns success if request succeeds, failure if it fails
SetCoinbase(ctx context.Context, in *SetCoinbaseRequest, opts ...grpc.CallOption) (*SetCoinbaseResponse, error)
// Returns the Post setup status
PostSetupStatus(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PostSetupStatusResponse, error)
// Returns a stream of updates for the Post setup status
PostSetupStatusStream(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (SmesherService_PostSetupStatusStreamClient, error)
// Returns a list of available Post setup providers
PostSetupProviders(ctx context.Context, in *PostSetupProvidersRequest, opts ...grpc.CallOption) (*PostSetupProvidersResponse, error)
// Returns the Post protocol config
PostConfig(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PostConfigResponse, error)
}
type smesherServiceClient struct {
cc grpc.ClientConnInterface
}
func NewSmesherServiceClient(cc grpc.ClientConnInterface) SmesherServiceClient {
return &smesherServiceClient{cc}
}
func (c *smesherServiceClient) IsSmeshing(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*IsSmeshingResponse, error) {
out := new(IsSmeshingResponse)
err := c.cc.Invoke(ctx, SmesherService_IsSmeshing_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) StartSmeshing(ctx context.Context, in *StartSmeshingRequest, opts ...grpc.CallOption) (*StartSmeshingResponse, error) {
out := new(StartSmeshingResponse)
err := c.cc.Invoke(ctx, SmesherService_StartSmeshing_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) StopSmeshing(ctx context.Context, in *StopSmeshingRequest, opts ...grpc.CallOption) (*StopSmeshingResponse, error) {
out := new(StopSmeshingResponse)
err := c.cc.Invoke(ctx, SmesherService_StopSmeshing_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) SmesherIDs(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*SmesherIDsResponse, error) {
out := new(SmesherIDsResponse)
err := c.cc.Invoke(ctx, SmesherService_SmesherIDs_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) Coinbase(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*CoinbaseResponse, error) {
out := new(CoinbaseResponse)
err := c.cc.Invoke(ctx, SmesherService_Coinbase_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) SetCoinbase(ctx context.Context, in *SetCoinbaseRequest, opts ...grpc.CallOption) (*SetCoinbaseResponse, error) {
out := new(SetCoinbaseResponse)
err := c.cc.Invoke(ctx, SmesherService_SetCoinbase_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) PostSetupStatus(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PostSetupStatusResponse, error) {
out := new(PostSetupStatusResponse)
err := c.cc.Invoke(ctx, SmesherService_PostSetupStatus_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) PostSetupStatusStream(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (SmesherService_PostSetupStatusStreamClient, error) {
stream, err := c.cc.NewStream(ctx, &SmesherService_ServiceDesc.Streams[0], SmesherService_PostSetupStatusStream_FullMethodName, opts...)
if err != nil {
return nil, err
}
x := &smesherServicePostSetupStatusStreamClient{stream}
if err := x.ClientStream.SendMsg(in); err != nil {
return nil, err
}
if err := x.ClientStream.CloseSend(); err != nil {
return nil, err
}
return x, nil
}
type SmesherService_PostSetupStatusStreamClient interface {
Recv() (*PostSetupStatusStreamResponse, error)
grpc.ClientStream
}
type smesherServicePostSetupStatusStreamClient struct {
grpc.ClientStream
}
func (x *smesherServicePostSetupStatusStreamClient) Recv() (*PostSetupStatusStreamResponse, error) {
m := new(PostSetupStatusStreamResponse)
if err := x.ClientStream.RecvMsg(m); err != nil {
return nil, err
}
return m, nil
}
func (c *smesherServiceClient) PostSetupProviders(ctx context.Context, in *PostSetupProvidersRequest, opts ...grpc.CallOption) (*PostSetupProvidersResponse, error) {
out := new(PostSetupProvidersResponse)
err := c.cc.Invoke(ctx, SmesherService_PostSetupProviders_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *smesherServiceClient) PostConfig(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*PostConfigResponse, error) {
out := new(PostConfigResponse)
err := c.cc.Invoke(ctx, SmesherService_PostConfig_FullMethodName, in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// SmesherServiceServer is the server API for SmesherService service.
// All implementations should embed UnimplementedSmesherServiceServer
// for forward compatibility
type SmesherServiceServer interface {
// Returns true iff node is currently smeshing
IsSmeshing(context.Context, *emptypb.Empty) (*IsSmeshingResponse, error)
// Starts smeshing, after completing the post setup.
// Changing of the post setup options (e.g., number of units), after initial setup, is supported.
// Returns success if request is accepted by node , failure if it fails
StartSmeshing(context.Context, *StartSmeshingRequest) (*StartSmeshingResponse, error)
// Stops smeshing, or the preceding post setup session, and optionally attempt to
// delete the post setup data files(s).
// Returns success if request is accepted by node, failure if it fails
StopSmeshing(context.Context, *StopSmeshingRequest) (*StopSmeshingResponse, error)
// Get the Smesher IDs managed by the node
SmesherIDs(context.Context, *emptypb.Empty) (*SmesherIDsResponse, error)
// Get the current coinbase
Coinbase(context.Context, *emptypb.Empty) (*CoinbaseResponse, error)
// Set the coinbase
// Returns success if request succeeds, failure if it fails
SetCoinbase(context.Context, *SetCoinbaseRequest) (*SetCoinbaseResponse, error)
// Returns the Post setup status
PostSetupStatus(context.Context, *emptypb.Empty) (*PostSetupStatusResponse, error)
// Returns a stream of updates for the Post setup status
PostSetupStatusStream(*emptypb.Empty, SmesherService_PostSetupStatusStreamServer) error
// Returns a list of available Post setup providers
PostSetupProviders(context.Context, *PostSetupProvidersRequest) (*PostSetupProvidersResponse, error)
// Returns the Post protocol config
PostConfig(context.Context, *emptypb.Empty) (*PostConfigResponse, error)
}
// UnimplementedSmesherServiceServer should be embedded to have forward compatible implementations.
type UnimplementedSmesherServiceServer struct {
}
func (UnimplementedSmesherServiceServer) IsSmeshing(context.Context, *emptypb.Empty) (*IsSmeshingResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method IsSmeshing not implemented")
}
func (UnimplementedSmesherServiceServer) StartSmeshing(context.Context, *StartSmeshingRequest) (*StartSmeshingResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method StartSmeshing not implemented")
}
func (UnimplementedSmesherServiceServer) StopSmeshing(context.Context, *StopSmeshingRequest) (*StopSmeshingResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method StopSmeshing not implemented")
}
func (UnimplementedSmesherServiceServer) SmesherIDs(context.Context, *emptypb.Empty) (*SmesherIDsResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SmesherIDs not implemented")
}
func (UnimplementedSmesherServiceServer) Coinbase(context.Context, *emptypb.Empty) (*CoinbaseResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method Coinbase not implemented")
}
func (UnimplementedSmesherServiceServer) SetCoinbase(context.Context, *SetCoinbaseRequest) (*SetCoinbaseResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetCoinbase not implemented")
}
func (UnimplementedSmesherServiceServer) PostSetupStatus(context.Context, *emptypb.Empty) (*PostSetupStatusResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method PostSetupStatus not implemented")
}
func (UnimplementedSmesherServiceServer) PostSetupStatusStream(*emptypb.Empty, SmesherService_PostSetupStatusStreamServer) error {
return status.Errorf(codes.Unimplemented, "method PostSetupStatusStream not implemented")
}
func (UnimplementedSmesherServiceServer) PostSetupProviders(context.Context, *PostSetupProvidersRequest) (*PostSetupProvidersResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method PostSetupProviders not implemented")
}
func (UnimplementedSmesherServiceServer) PostConfig(context.Context, *emptypb.Empty) (*PostConfigResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method PostConfig not implemented")
}
// UnsafeSmesherServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to SmesherServiceServer will
// result in compilation errors.
type UnsafeSmesherServiceServer interface {
mustEmbedUnimplementedSmesherServiceServer()
}
func RegisterSmesherServiceServer(s grpc.ServiceRegistrar, srv SmesherServiceServer) {
s.RegisterService(&SmesherService_ServiceDesc, srv)
}
func _SmesherService_IsSmeshing_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).IsSmeshing(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_IsSmeshing_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).IsSmeshing(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_StartSmeshing_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(StartSmeshingRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).StartSmeshing(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_StartSmeshing_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).StartSmeshing(ctx, req.(*StartSmeshingRequest))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_StopSmeshing_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(StopSmeshingRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).StopSmeshing(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_StopSmeshing_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).StopSmeshing(ctx, req.(*StopSmeshingRequest))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_SmesherIDs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).SmesherIDs(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_SmesherIDs_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).SmesherIDs(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_Coinbase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).Coinbase(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_Coinbase_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).Coinbase(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_SetCoinbase_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SetCoinbaseRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).SetCoinbase(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_SetCoinbase_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).SetCoinbase(ctx, req.(*SetCoinbaseRequest))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_PostSetupStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).PostSetupStatus(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_PostSetupStatus_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).PostSetupStatus(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_PostSetupStatusStream_Handler(srv interface{}, stream grpc.ServerStream) error {
m := new(emptypb.Empty)
if err := stream.RecvMsg(m); err != nil {
return err
}
return srv.(SmesherServiceServer).PostSetupStatusStream(m, &smesherServicePostSetupStatusStreamServer{stream})
}
type SmesherService_PostSetupStatusStreamServer interface {
Send(*PostSetupStatusStreamResponse) error
grpc.ServerStream
}
type smesherServicePostSetupStatusStreamServer struct {
grpc.ServerStream
}
func (x *smesherServicePostSetupStatusStreamServer) Send(m *PostSetupStatusStreamResponse) error {
return x.ServerStream.SendMsg(m)
}
func _SmesherService_PostSetupProviders_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(PostSetupProvidersRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).PostSetupProviders(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_PostSetupProviders_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).PostSetupProviders(ctx, req.(*PostSetupProvidersRequest))
}
return interceptor(ctx, in, info, handler)
}
func _SmesherService_PostConfig_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(emptypb.Empty)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(SmesherServiceServer).PostConfig(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: SmesherService_PostConfig_FullMethodName,
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(SmesherServiceServer).PostConfig(ctx, req.(*emptypb.Empty))
}
return interceptor(ctx, in, info, handler)
}
// SmesherService_ServiceDesc is the grpc.ServiceDesc for SmesherService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var SmesherService_ServiceDesc = grpc.ServiceDesc{
ServiceName: "spacemesh.v1.SmesherService",
HandlerType: (*SmesherServiceServer)(nil),
Methods: []grpc.MethodDesc{
{
MethodName: "IsSmeshing",
Handler: _SmesherService_IsSmeshing_Handler,
},
{
MethodName: "StartSmeshing",
Handler: _SmesherService_StartSmeshing_Handler,
},
{
MethodName: "StopSmeshing",
Handler: _SmesherService_StopSmeshing_Handler,
},
{
MethodName: "SmesherIDs",
Handler: _SmesherService_SmesherIDs_Handler,
},
{
MethodName: "Coinbase",
Handler: _SmesherService_Coinbase_Handler,
},
{
MethodName: "SetCoinbase",
Handler: _SmesherService_SetCoinbase_Handler,
},
{
MethodName: "PostSetupStatus",
Handler: _SmesherService_PostSetupStatus_Handler,
},
{
MethodName: "PostSetupProviders",
Handler: _SmesherService_PostSetupProviders_Handler,
},
{
MethodName: "PostConfig",
Handler: _SmesherService_PostConfig_Handler,
},
},
Streams: []grpc.StreamDesc{
{
StreamName: "PostSetupStatusStream",
Handler: _SmesherService_PostSetupStatusStream_Handler,
ServerStreams: true,
},
},
Metadata: "spacemesh/v1/smesher.proto",
}