blob: 5b9f184bbb523455c121a379045f8ea41e56abe9 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
package ingest
import "codeberg.org/lindenii/furgit/internal/utils"
func writeProgressf(state *ingestState, format string, args ...any) {
utils.BestEffortFprintf(state.opts.Progress, format, args...)
if state.opts.ProgressFlush != nil {
_ = state.opts.ProgressFlush()
}
}
|