mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-18 13:00:10 -05:00
15 lines
371 B
Go
15 lines
371 B
Go
package dashboardevents
|
|
|
|
import "time"
|
|
|
|
// ExecutionError is an event which is sent if an error occusrs _before execution has started_
|
|
// e.g. a failure to create the execution tree
|
|
type ExecutionError struct {
|
|
Error error
|
|
Session string
|
|
Timestamp time.Time
|
|
}
|
|
|
|
// IsDashboardEvent implements DashboardEvent interface
|
|
func (*ExecutionError) IsDashboardEvent() {}
|