mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
12 lines
324 B
Go
12 lines
324 B
Go
package statushooks
|
|
|
|
import "context"
|
|
|
|
// NullProgress is an empty implementation of SnapshotProgress
|
|
var NullProgress = &NullSnapshotProgress{}
|
|
|
|
type NullSnapshotProgress struct{}
|
|
|
|
func (*NullSnapshotProgress) UpdateRowCount(context.Context, int) {}
|
|
func (*NullSnapshotProgress) UpdateErrorCount(context.Context, int) {}
|