// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v7.35.1 // source: rpc/production/production.proto package pb import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // 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.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( ProductionService_CreateProductionPlan_FullMethodName = "/production.ProductionService/CreateProductionPlan" ProductionService_ListProductionPlan_FullMethodName = "/production.ProductionService/ListProductionPlan" ProductionService_GetProductionPlan_FullMethodName = "/production.ProductionService/GetProductionPlan" ProductionService_ConfirmPlan_FullMethodName = "/production.ProductionService/ConfirmPlan" ProductionService_CreateShareLink_FullMethodName = "/production.ProductionService/CreateShareLink" ProductionService_GetShareLink_FullMethodName = "/production.ProductionService/GetShareLink" ProductionService_GetShareLinkPlanView_FullMethodName = "/production.ProductionService/GetShareLinkPlanView" ProductionService_ClickShareLink_FullMethodName = "/production.ProductionService/ClickShareLink" ProductionService_ConfirmShareLink_FullMethodName = "/production.ProductionService/ConfirmShareLink" ProductionService_RejectShareLink_FullMethodName = "/production.ProductionService/RejectShareLink" ProductionService_CompleteStep_FullMethodName = "/production.ProductionService/CompleteStep" ProductionService_CreateInbound_FullMethodName = "/production.ProductionService/CreateInbound" ProductionService_ListInbound_FullMethodName = "/production.ProductionService/ListInbound" ) // ProductionServiceClient is the client API for ProductionService 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 ProductionServiceClient interface { CreateProductionPlan(ctx context.Context, in *CreateProductionPlanReq, opts ...grpc.CallOption) (*IdResp, error) ListProductionPlan(ctx context.Context, in *ListProductionPlanReq, opts ...grpc.CallOption) (*ListProductionPlanResp, error) GetProductionPlan(ctx context.Context, in *GetProductionPlanReq, opts ...grpc.CallOption) (*ProductionPlanInfo, error) ConfirmPlan(ctx context.Context, in *ConfirmPlanReq, opts ...grpc.CallOption) (*Empty, error) CreateShareLink(ctx context.Context, in *CreateShareLinkReq, opts ...grpc.CallOption) (*ShareLinkInfo, error) GetShareLink(ctx context.Context, in *GetShareLinkReq, opts ...grpc.CallOption) (*ShareLinkInfo, error) GetShareLinkPlanView(ctx context.Context, in *GetShareLinkReq, opts ...grpc.CallOption) (*ShareLinkPlanView, error) ClickShareLink(ctx context.Context, in *ClickShareLinkReq, opts ...grpc.CallOption) (*Empty, error) ConfirmShareLink(ctx context.Context, in *ConfirmShareLinkReq, opts ...grpc.CallOption) (*Empty, error) RejectShareLink(ctx context.Context, in *RejectShareLinkReq, opts ...grpc.CallOption) (*Empty, error) CompleteStep(ctx context.Context, in *CompleteStepReq, opts ...grpc.CallOption) (*Empty, error) CreateInbound(ctx context.Context, in *CreateInboundReq, opts ...grpc.CallOption) (*IdResp, error) ListInbound(ctx context.Context, in *ListInboundReq, opts ...grpc.CallOption) (*ListInboundResp, error) } type productionServiceClient struct { cc grpc.ClientConnInterface } func NewProductionServiceClient(cc grpc.ClientConnInterface) ProductionServiceClient { return &productionServiceClient{cc} } func (c *productionServiceClient) CreateProductionPlan(ctx context.Context, in *CreateProductionPlanReq, opts ...grpc.CallOption) (*IdResp, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(IdResp) err := c.cc.Invoke(ctx, ProductionService_CreateProductionPlan_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) ListProductionPlan(ctx context.Context, in *ListProductionPlanReq, opts ...grpc.CallOption) (*ListProductionPlanResp, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListProductionPlanResp) err := c.cc.Invoke(ctx, ProductionService_ListProductionPlan_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) GetProductionPlan(ctx context.Context, in *GetProductionPlanReq, opts ...grpc.CallOption) (*ProductionPlanInfo, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ProductionPlanInfo) err := c.cc.Invoke(ctx, ProductionService_GetProductionPlan_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) ConfirmPlan(ctx context.Context, in *ConfirmPlanReq, opts ...grpc.CallOption) (*Empty, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Empty) err := c.cc.Invoke(ctx, ProductionService_ConfirmPlan_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) CreateShareLink(ctx context.Context, in *CreateShareLinkReq, opts ...grpc.CallOption) (*ShareLinkInfo, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ShareLinkInfo) err := c.cc.Invoke(ctx, ProductionService_CreateShareLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) GetShareLink(ctx context.Context, in *GetShareLinkReq, opts ...grpc.CallOption) (*ShareLinkInfo, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ShareLinkInfo) err := c.cc.Invoke(ctx, ProductionService_GetShareLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) GetShareLinkPlanView(ctx context.Context, in *GetShareLinkReq, opts ...grpc.CallOption) (*ShareLinkPlanView, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ShareLinkPlanView) err := c.cc.Invoke(ctx, ProductionService_GetShareLinkPlanView_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) ClickShareLink(ctx context.Context, in *ClickShareLinkReq, opts ...grpc.CallOption) (*Empty, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Empty) err := c.cc.Invoke(ctx, ProductionService_ClickShareLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) ConfirmShareLink(ctx context.Context, in *ConfirmShareLinkReq, opts ...grpc.CallOption) (*Empty, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Empty) err := c.cc.Invoke(ctx, ProductionService_ConfirmShareLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) RejectShareLink(ctx context.Context, in *RejectShareLinkReq, opts ...grpc.CallOption) (*Empty, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Empty) err := c.cc.Invoke(ctx, ProductionService_RejectShareLink_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) CompleteStep(ctx context.Context, in *CompleteStepReq, opts ...grpc.CallOption) (*Empty, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(Empty) err := c.cc.Invoke(ctx, ProductionService_CompleteStep_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) CreateInbound(ctx context.Context, in *CreateInboundReq, opts ...grpc.CallOption) (*IdResp, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(IdResp) err := c.cc.Invoke(ctx, ProductionService_CreateInbound_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } func (c *productionServiceClient) ListInbound(ctx context.Context, in *ListInboundReq, opts ...grpc.CallOption) (*ListInboundResp, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(ListInboundResp) err := c.cc.Invoke(ctx, ProductionService_ListInbound_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } // ProductionServiceServer is the server API for ProductionService service. // All implementations must embed UnimplementedProductionServiceServer // for forward compatibility. type ProductionServiceServer interface { CreateProductionPlan(context.Context, *CreateProductionPlanReq) (*IdResp, error) ListProductionPlan(context.Context, *ListProductionPlanReq) (*ListProductionPlanResp, error) GetProductionPlan(context.Context, *GetProductionPlanReq) (*ProductionPlanInfo, error) ConfirmPlan(context.Context, *ConfirmPlanReq) (*Empty, error) CreateShareLink(context.Context, *CreateShareLinkReq) (*ShareLinkInfo, error) GetShareLink(context.Context, *GetShareLinkReq) (*ShareLinkInfo, error) GetShareLinkPlanView(context.Context, *GetShareLinkReq) (*ShareLinkPlanView, error) ClickShareLink(context.Context, *ClickShareLinkReq) (*Empty, error) ConfirmShareLink(context.Context, *ConfirmShareLinkReq) (*Empty, error) RejectShareLink(context.Context, *RejectShareLinkReq) (*Empty, error) CompleteStep(context.Context, *CompleteStepReq) (*Empty, error) CreateInbound(context.Context, *CreateInboundReq) (*IdResp, error) ListInbound(context.Context, *ListInboundReq) (*ListInboundResp, error) mustEmbedUnimplementedProductionServiceServer() } // UnimplementedProductionServiceServer must be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedProductionServiceServer struct{} func (UnimplementedProductionServiceServer) CreateProductionPlan(context.Context, *CreateProductionPlanReq) (*IdResp, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateProductionPlan not implemented") } func (UnimplementedProductionServiceServer) ListProductionPlan(context.Context, *ListProductionPlanReq) (*ListProductionPlanResp, error) { return nil, status.Errorf(codes.Unimplemented, "method ListProductionPlan not implemented") } func (UnimplementedProductionServiceServer) GetProductionPlan(context.Context, *GetProductionPlanReq) (*ProductionPlanInfo, error) { return nil, status.Errorf(codes.Unimplemented, "method GetProductionPlan not implemented") } func (UnimplementedProductionServiceServer) ConfirmPlan(context.Context, *ConfirmPlanReq) (*Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method ConfirmPlan not implemented") } func (UnimplementedProductionServiceServer) CreateShareLink(context.Context, *CreateShareLinkReq) (*ShareLinkInfo, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateShareLink not implemented") } func (UnimplementedProductionServiceServer) GetShareLink(context.Context, *GetShareLinkReq) (*ShareLinkInfo, error) { return nil, status.Errorf(codes.Unimplemented, "method GetShareLink not implemented") } func (UnimplementedProductionServiceServer) GetShareLinkPlanView(context.Context, *GetShareLinkReq) (*ShareLinkPlanView, error) { return nil, status.Errorf(codes.Unimplemented, "method GetShareLinkPlanView not implemented") } func (UnimplementedProductionServiceServer) ClickShareLink(context.Context, *ClickShareLinkReq) (*Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method ClickShareLink not implemented") } func (UnimplementedProductionServiceServer) ConfirmShareLink(context.Context, *ConfirmShareLinkReq) (*Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method ConfirmShareLink not implemented") } func (UnimplementedProductionServiceServer) RejectShareLink(context.Context, *RejectShareLinkReq) (*Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method RejectShareLink not implemented") } func (UnimplementedProductionServiceServer) CompleteStep(context.Context, *CompleteStepReq) (*Empty, error) { return nil, status.Errorf(codes.Unimplemented, "method CompleteStep not implemented") } func (UnimplementedProductionServiceServer) CreateInbound(context.Context, *CreateInboundReq) (*IdResp, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateInbound not implemented") } func (UnimplementedProductionServiceServer) ListInbound(context.Context, *ListInboundReq) (*ListInboundResp, error) { return nil, status.Errorf(codes.Unimplemented, "method ListInbound not implemented") } func (UnimplementedProductionServiceServer) mustEmbedUnimplementedProductionServiceServer() {} func (UnimplementedProductionServiceServer) testEmbeddedByValue() {} // UnsafeProductionServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ProductionServiceServer will // result in compilation errors. type UnsafeProductionServiceServer interface { mustEmbedUnimplementedProductionServiceServer() } func RegisterProductionServiceServer(s grpc.ServiceRegistrar, srv ProductionServiceServer) { // If the following call pancis, it indicates UnimplementedProductionServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&ProductionService_ServiceDesc, srv) } func _ProductionService_CreateProductionPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CreateProductionPlanReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).CreateProductionPlan(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_CreateProductionPlan_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).CreateProductionPlan(ctx, req.(*CreateProductionPlanReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_ListProductionPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListProductionPlanReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).ListProductionPlan(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_ListProductionPlan_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).ListProductionPlan(ctx, req.(*ListProductionPlanReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_GetProductionPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetProductionPlanReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).GetProductionPlan(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_GetProductionPlan_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).GetProductionPlan(ctx, req.(*GetProductionPlanReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_ConfirmPlan_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ConfirmPlanReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).ConfirmPlan(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_ConfirmPlan_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).ConfirmPlan(ctx, req.(*ConfirmPlanReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_CreateShareLink_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CreateShareLinkReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).CreateShareLink(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_CreateShareLink_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).CreateShareLink(ctx, req.(*CreateShareLinkReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_GetShareLink_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetShareLinkReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).GetShareLink(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_GetShareLink_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).GetShareLink(ctx, req.(*GetShareLinkReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_GetShareLinkPlanView_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(GetShareLinkReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).GetShareLinkPlanView(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_GetShareLinkPlanView_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).GetShareLinkPlanView(ctx, req.(*GetShareLinkReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_ClickShareLink_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ClickShareLinkReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).ClickShareLink(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_ClickShareLink_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).ClickShareLink(ctx, req.(*ClickShareLinkReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_ConfirmShareLink_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ConfirmShareLinkReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).ConfirmShareLink(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_ConfirmShareLink_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).ConfirmShareLink(ctx, req.(*ConfirmShareLinkReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_RejectShareLink_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(RejectShareLinkReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).RejectShareLink(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_RejectShareLink_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).RejectShareLink(ctx, req.(*RejectShareLinkReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_CompleteStep_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CompleteStepReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).CompleteStep(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_CompleteStep_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).CompleteStep(ctx, req.(*CompleteStepReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_CreateInbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(CreateInboundReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).CreateInbound(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_CreateInbound_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).CreateInbound(ctx, req.(*CreateInboundReq)) } return interceptor(ctx, in, info, handler) } func _ProductionService_ListInbound_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ListInboundReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ProductionServiceServer).ListInbound(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: ProductionService_ListInbound_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ProductionServiceServer).ListInbound(ctx, req.(*ListInboundReq)) } return interceptor(ctx, in, info, handler) } // ProductionService_ServiceDesc is the grpc.ServiceDesc for ProductionService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ProductionService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "production.ProductionService", HandlerType: (*ProductionServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "CreateProductionPlan", Handler: _ProductionService_CreateProductionPlan_Handler, }, { MethodName: "ListProductionPlan", Handler: _ProductionService_ListProductionPlan_Handler, }, { MethodName: "GetProductionPlan", Handler: _ProductionService_GetProductionPlan_Handler, }, { MethodName: "ConfirmPlan", Handler: _ProductionService_ConfirmPlan_Handler, }, { MethodName: "CreateShareLink", Handler: _ProductionService_CreateShareLink_Handler, }, { MethodName: "GetShareLink", Handler: _ProductionService_GetShareLink_Handler, }, { MethodName: "GetShareLinkPlanView", Handler: _ProductionService_GetShareLinkPlanView_Handler, }, { MethodName: "ClickShareLink", Handler: _ProductionService_ClickShareLink_Handler, }, { MethodName: "ConfirmShareLink", Handler: _ProductionService_ConfirmShareLink_Handler, }, { MethodName: "RejectShareLink", Handler: _ProductionService_RejectShareLink_Handler, }, { MethodName: "CompleteStep", Handler: _ProductionService_CompleteStep_Handler, }, { MethodName: "CreateInbound", Handler: _ProductionService_CreateInbound_Handler, }, { MethodName: "ListInbound", Handler: _ProductionService_ListInbound_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "rpc/production/production.proto", }