mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-08 00:02:09 -04:00
13 lines
304 B
Go
13 lines
304 B
Go
package dashboardevents
|
|
|
|
import "github.com/turbot/steampipe/dashboard/dashboardinterfaces"
|
|
|
|
type LeafNodeError struct {
|
|
LeafNode dashboardinterfaces.DashboardNodeRun
|
|
Session string
|
|
Error error
|
|
}
|
|
|
|
// IsDashboardEvent implements DashboardEvent interface
|
|
func (*LeafNodeError) IsDashboardEvent() {}
|