mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-22 14:00:14 -05:00
12 lines
331 B
Go
12 lines
331 B
Go
package dashboardevents
|
|
|
|
// 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
|
|
}
|
|
|
|
// IsDashboardEvent implements DashboardEvent interface
|
|
func (*ExecutionError) IsDashboardEvent() {}
|