mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-08 00:02:09 -04:00
12 lines
315 B
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() {}
|