(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor)
| 171 | } |
| 172 | |
| 173 | func _Quick_UploadArchive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| 174 | in := new(UploadArchiveRequest) |
| 175 | if err := dec(in); err != nil { |
| 176 | return nil, err |
| 177 | } |
| 178 | if interceptor == nil { |
| 179 | return srv.(QuickServer).UploadArchive(ctx, in) |
| 180 | } |
| 181 | info := &grpc.UnaryServerInfo{ |
| 182 | Server: srv, |
| 183 | FullMethod: Quick_UploadArchive_FullMethodName, |
| 184 | } |
| 185 | handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| 186 | return srv.(QuickServer).UploadArchive(ctx, req.(*UploadArchiveRequest)) |
| 187 | } |
| 188 | return interceptor(ctx, in, info, handler) |
| 189 | } |
| 190 | |
| 191 | func _Quick_VerifyQuerySets_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| 192 | in := new(VerifyQuerySetsRequest) |
nothing calls this directly
no test coverage detected