(ctx context.Context, batchID string, detail bool, fileUploadID string, since int64)
| 37 | } |
| 38 | |
| 39 | func (s *BatchUploadService) GetProgress(ctx context.Context, batchID string, detail bool, fileUploadID string, since int64) (*core.BatchProgressResponse, error) { |
| 40 | return s.facade.GetProgressStorage().GetBatchProgress(batchID, &core.ProgressQueryParams{ |
| 41 | Detail: detail, |
| 42 | FileUploadID: fileUploadID, |
| 43 | Since: since, |
| 44 | }) |
| 45 | } |
| 46 | |
| 47 | func (s *BatchUploadService) CancelBatch(ctx context.Context, batchID string) error { |
| 48 | return s.facade.CancelBatch(batchID) |
no test coverage detected