Report defines a function to log progress
func(bytesRead, totalBytes int64)
| 20 | |
| 21 | // Report defines a function to log progress |
| 22 | type Report func(bytesRead, totalBytes int64) |
| 23 | |
| 24 | // DefaultReport returns a default report function |
| 25 | func DefaultReport(l *slog.Logger, msg string, imageName string) Report { |
nothing calls this directly
no outgoing calls
no test coverage detected