// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.2.0 // - protoc v3.10.1 // source: pb/artshow.proto package artShow 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.32.0 or later. const _ = grpc.SupportPackageIsVersion7 // ArtShowClient is the client API for ArtShow 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 ArtShowClient interface { CreateShow(ctx context.Context, in *SaveShowReq, opts ...grpc.CallOption) (*SaveShowRes, error) UpdateShow(ctx context.Context, in *SaveShowReq, opts ...grpc.CallOption) (*SaveShowRes, error) DelShow(ctx context.Context, in *DelShowReq, opts ...grpc.CallOption) (*CommonRes, error) ShowList(ctx context.Context, in *ShowListReq, opts ...grpc.CallOption) (*ShowListRes, error) ShowArtworkInfo(ctx context.Context, in *ShowDetailReq, opts ...grpc.CallOption) (*ShowArtworkDetailRes, error) ShowDetail(ctx context.Context, in *ShowDetailReq, opts ...grpc.CallOption) (*ShowDetailRes, error) ShowStatisticalInfo(ctx context.Context, in *ShowStatisticalInfoReq, opts ...grpc.CallOption) (*ShowStatisticalInfoRes, error) ArtworkPrice(ctx context.Context, in *ArtworkPriceReq, opts ...grpc.CallOption) (*ArtworkPriceRes, error) CreateApply(ctx context.Context, in *SaveApplyReq, opts ...grpc.CallOption) (*SaveApplyRes, error) UpdateApply(ctx context.Context, in *SaveApplyReq, opts ...grpc.CallOption) (*SaveApplyRes, error) DelApply(ctx context.Context, in *DelApplyReq, opts ...grpc.CallOption) (*CommonRes, error) ShowListWithApply(ctx context.Context, in *ShowListReq, opts ...grpc.CallOption) (*ShowListRes, error) UpdateApplyStatus(ctx context.Context, in *UpdateApplyStatusReq, opts ...grpc.CallOption) (*CommonRes, error) ApplyList(ctx context.Context, in *ApplyListReq, opts ...grpc.CallOption) (*ApplyListRes, error) ApplyDetail(ctx context.Context, in *ApplyShowReq, opts ...grpc.CallOption) (*ApplyShowRes, error) } type artShowClient struct { cc grpc.ClientConnInterface } func NewArtShowClient(cc grpc.ClientConnInterface) ArtShowClient { return &artShowClient{cc} } func (c *artShowClient) CreateShow(ctx context.Context, in *SaveShowReq, opts ...grpc.CallOption) (*SaveShowRes, error) { out := new(SaveShowRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/CreateShow", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) UpdateShow(ctx context.Context, in *SaveShowReq, opts ...grpc.CallOption) (*SaveShowRes, error) { out := new(SaveShowRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/UpdateShow", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) DelShow(ctx context.Context, in *DelShowReq, opts ...grpc.CallOption) (*CommonRes, error) { out := new(CommonRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/DelShow", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ShowList(ctx context.Context, in *ShowListReq, opts ...grpc.CallOption) (*ShowListRes, error) { out := new(ShowListRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ShowList", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ShowArtworkInfo(ctx context.Context, in *ShowDetailReq, opts ...grpc.CallOption) (*ShowArtworkDetailRes, error) { out := new(ShowArtworkDetailRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ShowArtworkInfo", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ShowDetail(ctx context.Context, in *ShowDetailReq, opts ...grpc.CallOption) (*ShowDetailRes, error) { out := new(ShowDetailRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ShowDetail", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ShowStatisticalInfo(ctx context.Context, in *ShowStatisticalInfoReq, opts ...grpc.CallOption) (*ShowStatisticalInfoRes, error) { out := new(ShowStatisticalInfoRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ShowStatisticalInfo", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ArtworkPrice(ctx context.Context, in *ArtworkPriceReq, opts ...grpc.CallOption) (*ArtworkPriceRes, error) { out := new(ArtworkPriceRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ArtworkPrice", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) CreateApply(ctx context.Context, in *SaveApplyReq, opts ...grpc.CallOption) (*SaveApplyRes, error) { out := new(SaveApplyRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/CreateApply", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) UpdateApply(ctx context.Context, in *SaveApplyReq, opts ...grpc.CallOption) (*SaveApplyRes, error) { out := new(SaveApplyRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/UpdateApply", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) DelApply(ctx context.Context, in *DelApplyReq, opts ...grpc.CallOption) (*CommonRes, error) { out := new(CommonRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/DelApply", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ShowListWithApply(ctx context.Context, in *ShowListReq, opts ...grpc.CallOption) (*ShowListRes, error) { out := new(ShowListRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ShowListWithApply", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) UpdateApplyStatus(ctx context.Context, in *UpdateApplyStatusReq, opts ...grpc.CallOption) (*CommonRes, error) { out := new(CommonRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/UpdateApplyStatus", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ApplyList(ctx context.Context, in *ApplyListReq, opts ...grpc.CallOption) (*ApplyListRes, error) { out := new(ApplyListRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ApplyList", in, out, opts...) if err != nil { return nil, err } return out, nil } func (c *artShowClient) ApplyDetail(ctx context.Context, in *ApplyShowReq, opts ...grpc.CallOption) (*ApplyShowRes, error) { out := new(ApplyShowRes) err := c.cc.Invoke(ctx, "/ArtShow.ArtShow/ApplyDetail", in, out, opts...) if err != nil { return nil, err } return out, nil } // ArtShowServer is the server API for ArtShow service. // All implementations must embed UnimplementedArtShowServer // for forward compatibility type ArtShowServer interface { CreateShow(context.Context, *SaveShowReq) (*SaveShowRes, error) UpdateShow(context.Context, *SaveShowReq) (*SaveShowRes, error) DelShow(context.Context, *DelShowReq) (*CommonRes, error) ShowList(context.Context, *ShowListReq) (*ShowListRes, error) ShowArtworkInfo(context.Context, *ShowDetailReq) (*ShowArtworkDetailRes, error) ShowDetail(context.Context, *ShowDetailReq) (*ShowDetailRes, error) ShowStatisticalInfo(context.Context, *ShowStatisticalInfoReq) (*ShowStatisticalInfoRes, error) ArtworkPrice(context.Context, *ArtworkPriceReq) (*ArtworkPriceRes, error) CreateApply(context.Context, *SaveApplyReq) (*SaveApplyRes, error) UpdateApply(context.Context, *SaveApplyReq) (*SaveApplyRes, error) DelApply(context.Context, *DelApplyReq) (*CommonRes, error) ShowListWithApply(context.Context, *ShowListReq) (*ShowListRes, error) UpdateApplyStatus(context.Context, *UpdateApplyStatusReq) (*CommonRes, error) ApplyList(context.Context, *ApplyListReq) (*ApplyListRes, error) ApplyDetail(context.Context, *ApplyShowReq) (*ApplyShowRes, error) mustEmbedUnimplementedArtShowServer() } // UnimplementedArtShowServer must be embedded to have forward compatible implementations. type UnimplementedArtShowServer struct { } func (UnimplementedArtShowServer) CreateShow(context.Context, *SaveShowReq) (*SaveShowRes, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateShow not implemented") } func (UnimplementedArtShowServer) UpdateShow(context.Context, *SaveShowReq) (*SaveShowRes, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateShow not implemented") } func (UnimplementedArtShowServer) DelShow(context.Context, *DelShowReq) (*CommonRes, error) { return nil, status.Errorf(codes.Unimplemented, "method DelShow not implemented") } func (UnimplementedArtShowServer) ShowList(context.Context, *ShowListReq) (*ShowListRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ShowList not implemented") } func (UnimplementedArtShowServer) ShowArtworkInfo(context.Context, *ShowDetailReq) (*ShowArtworkDetailRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ShowArtworkInfo not implemented") } func (UnimplementedArtShowServer) ShowDetail(context.Context, *ShowDetailReq) (*ShowDetailRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ShowDetail not implemented") } func (UnimplementedArtShowServer) ShowStatisticalInfo(context.Context, *ShowStatisticalInfoReq) (*ShowStatisticalInfoRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ShowStatisticalInfo not implemented") } func (UnimplementedArtShowServer) ArtworkPrice(context.Context, *ArtworkPriceReq) (*ArtworkPriceRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ArtworkPrice not implemented") } func (UnimplementedArtShowServer) CreateApply(context.Context, *SaveApplyReq) (*SaveApplyRes, error) { return nil, status.Errorf(codes.Unimplemented, "method CreateApply not implemented") } func (UnimplementedArtShowServer) UpdateApply(context.Context, *SaveApplyReq) (*SaveApplyRes, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateApply not implemented") } func (UnimplementedArtShowServer) DelApply(context.Context, *DelApplyReq) (*CommonRes, error) { return nil, status.Errorf(codes.Unimplemented, "method DelApply not implemented") } func (UnimplementedArtShowServer) ShowListWithApply(context.Context, *ShowListReq) (*ShowListRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ShowListWithApply not implemented") } func (UnimplementedArtShowServer) UpdateApplyStatus(context.Context, *UpdateApplyStatusReq) (*CommonRes, error) { return nil, status.Errorf(codes.Unimplemented, "method UpdateApplyStatus not implemented") } func (UnimplementedArtShowServer) ApplyList(context.Context, *ApplyListReq) (*ApplyListRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ApplyList not implemented") } func (UnimplementedArtShowServer) ApplyDetail(context.Context, *ApplyShowReq) (*ApplyShowRes, error) { return nil, status.Errorf(codes.Unimplemented, "method ApplyDetail not implemented") } func (UnimplementedArtShowServer) mustEmbedUnimplementedArtShowServer() {} // UnsafeArtShowServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to ArtShowServer will // result in compilation errors. type UnsafeArtShowServer interface { mustEmbedUnimplementedArtShowServer() } func RegisterArtShowServer(s grpc.ServiceRegistrar, srv ArtShowServer) { s.RegisterService(&ArtShow_ServiceDesc, srv) } func _ArtShow_CreateShow_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(SaveShowReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).CreateShow(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/CreateShow", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).CreateShow(ctx, req.(*SaveShowReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_UpdateShow_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(SaveShowReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).UpdateShow(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/UpdateShow", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).UpdateShow(ctx, req.(*SaveShowReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_DelShow_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DelShowReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).DelShow(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/DelShow", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).DelShow(ctx, req.(*DelShowReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ShowList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ShowListReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ShowList(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ShowList", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ShowList(ctx, req.(*ShowListReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ShowArtworkInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ShowDetailReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ShowArtworkInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ShowArtworkInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ShowArtworkInfo(ctx, req.(*ShowDetailReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ShowDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ShowDetailReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ShowDetail(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ShowDetail", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ShowDetail(ctx, req.(*ShowDetailReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ShowStatisticalInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ShowStatisticalInfoReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ShowStatisticalInfo(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ShowStatisticalInfo", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ShowStatisticalInfo(ctx, req.(*ShowStatisticalInfoReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ArtworkPrice_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ArtworkPriceReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ArtworkPrice(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ArtworkPrice", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ArtworkPrice(ctx, req.(*ArtworkPriceReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_CreateApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(SaveApplyReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).CreateApply(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/CreateApply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).CreateApply(ctx, req.(*SaveApplyReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_UpdateApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(SaveApplyReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).UpdateApply(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/UpdateApply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).UpdateApply(ctx, req.(*SaveApplyReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_DelApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DelApplyReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).DelApply(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/DelApply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).DelApply(ctx, req.(*DelApplyReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ShowListWithApply_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ShowListReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ShowListWithApply(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ShowListWithApply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ShowListWithApply(ctx, req.(*ShowListReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_UpdateApplyStatus_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(UpdateApplyStatusReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).UpdateApplyStatus(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/UpdateApplyStatus", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).UpdateApplyStatus(ctx, req.(*UpdateApplyStatusReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ApplyList_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ApplyListReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ApplyList(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ApplyList", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ApplyList(ctx, req.(*ApplyListReq)) } return interceptor(ctx, in, info, handler) } func _ArtShow_ApplyDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(ApplyShowReq) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(ArtShowServer).ApplyDetail(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/ArtShow.ArtShow/ApplyDetail", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(ArtShowServer).ApplyDetail(ctx, req.(*ApplyShowReq)) } return interceptor(ctx, in, info, handler) } // ArtShow_ServiceDesc is the grpc.ServiceDesc for ArtShow service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ArtShow_ServiceDesc = grpc.ServiceDesc{ ServiceName: "ArtShow.ArtShow", HandlerType: (*ArtShowServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "CreateShow", Handler: _ArtShow_CreateShow_Handler, }, { MethodName: "UpdateShow", Handler: _ArtShow_UpdateShow_Handler, }, { MethodName: "DelShow", Handler: _ArtShow_DelShow_Handler, }, { MethodName: "ShowList", Handler: _ArtShow_ShowList_Handler, }, { MethodName: "ShowArtworkInfo", Handler: _ArtShow_ShowArtworkInfo_Handler, }, { MethodName: "ShowDetail", Handler: _ArtShow_ShowDetail_Handler, }, { MethodName: "ShowStatisticalInfo", Handler: _ArtShow_ShowStatisticalInfo_Handler, }, { MethodName: "ArtworkPrice", Handler: _ArtShow_ArtworkPrice_Handler, }, { MethodName: "CreateApply", Handler: _ArtShow_CreateApply_Handler, }, { MethodName: "UpdateApply", Handler: _ArtShow_UpdateApply_Handler, }, { MethodName: "DelApply", Handler: _ArtShow_DelApply_Handler, }, { MethodName: "ShowListWithApply", Handler: _ArtShow_ShowListWithApply_Handler, }, { MethodName: "UpdateApplyStatus", Handler: _ArtShow_UpdateApplyStatus_Handler, }, { MethodName: "ApplyList", Handler: _ArtShow_ApplyList_Handler, }, { MethodName: "ApplyDetail", Handler: _ArtShow_ApplyDetail_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "pb/artshow.proto", }