mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
9 lines
297 B
Go
9 lines
297 B
Go
package controlstatus
|
|
|
|
// ControlRunStatusProvider is an interface used to allow us to pass a control as the payload of ControlComplete and ControlError events -
|
|
type ControlRunStatusProvider interface {
|
|
GetControlId() string
|
|
GetRunStatus() ControlRunStatus
|
|
GetStatusSummary() *StatusSummary
|
|
}
|