# workflows.DefaultProgress

```go
func DefaultProgress() workflows.ProgressTracker
```

Return the default progress tracker for the currently executing task.

Use the returned tracker to update total and completed work units inside a task `Execute` method.

## Returns

A progress tracker for the default progress indicator.

```go title="Go"
progress := workflows.DefaultProgress()
if err := progress.Add(ctx, 10); err != nil {
    return err
}
if err := progress.Done(ctx, 1); err != nil {
    return err
}
```
