From 9538623bcb3c629c468d4987d60a0e8dddfe52a8 Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Tue, 2 Dec 2025 18:13:05 +0000 Subject: [PATCH] Remove unused struct --- internal/benchmark/runner.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/internal/benchmark/runner.go b/internal/benchmark/runner.go index 93744f7..41dad45 100644 --- a/internal/benchmark/runner.go +++ b/internal/benchmark/runner.go @@ -221,10 +221,3 @@ func (r *Runner) makeRequest(ctx context.Context, cfg Config) (statusCode int, b return resp.StatusCode, int64(len(respBody)), bytesWritten, nil } - -// Progress represents the current progress of a benchmark run -type Progress struct { - Completed int - Total int - Elapsed time.Duration -}