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