mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-31 18:00:19 -04:00
19 lines
416 B
Go
19 lines
416 B
Go
package dashboardevents
|
|
|
|
import (
|
|
"github.com/turbot/steampipe/pkg/control/controlstatus"
|
|
"time"
|
|
)
|
|
|
|
type ControlComplete struct {
|
|
Progress *controlstatus.ControlProgress
|
|
Control controlstatus.ControlRunStatusProvider
|
|
Name string
|
|
Session string
|
|
ExecutionId string
|
|
Timestamp time.Time
|
|
}
|
|
|
|
// IsDashboardEvent implements DashboardEvent interface
|
|
func (*ControlComplete) IsDashboardEvent() {}
|