Files
steampipe/dashboard/dashboardevents/execution_started.go

12 lines
315 B
Go

package dashboardevents
import "github.com/turbot/steampipe/dashboard/dashboardinterfaces"
type ExecutionStarted struct {
Dashboard dashboardinterfaces.DashboardNodeRun `json:"dashboard"`
Session string
}
// IsDashboardEvent implements DashboardEvent interface
func (*ExecutionStarted) IsDashboardEvent() {}