mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
15 lines
374 B
Go
15 lines
374 B
Go
package dashboardevents
|
|
|
|
import "github.com/turbot/steampipe/pkg/control/controlstatus"
|
|
|
|
type ControlError struct {
|
|
Control controlstatus.ControlRunStatusProvider
|
|
Progress *controlstatus.ControlProgress
|
|
Name string
|
|
Session string
|
|
ExecutionId string
|
|
}
|
|
|
|
// IsDashboardEvent implements DashboardEvent interface
|
|
func (*ControlError) IsDashboardEvent() {}
|