diff options
| author | 2026-03-28 19:58:37 +0000 | |
|---|---|---|
| committer | 2026-03-28 19:58:37 +0000 | |
| commit | ea8373ed78113af57315ae4523d42dfed3a3b1fe (patch) | |
| tree | 835f98905046a8e5564cf6057af450fe03035444 /internal/progress/options.go | |
| parent | common/iowrap: Add io wrappers (diff) | |
| signature | No signature | |
network, internal/progress, format/packfile/ingest: Use WriteFlusher
Diffstat (limited to 'internal/progress/options.go')
| -rw-r--r-- | internal/progress/options.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/progress/options.go b/internal/progress/options.go index d7c08894..40dd9758 100644 --- a/internal/progress/options.go +++ b/internal/progress/options.go @@ -1,14 +1,14 @@ package progress import ( - "io" "time" + + "codeberg.org/lindenii/furgit/common/iowrap" ) // Options configures one progress meter. type Options struct { - Writer io.Writer - Flush func() error + Writer iowrap.WriteFlusher Title string Total uint64 |
