github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/dashboard/dashboardevents/dashboard_event.go (about) 1 package dashboardevents 2 3 import "context" 4 5 type DashboardEvent interface { 6 IsDashboardEvent() 7 } 8 type DashboardEventHandler func(context.Context, DashboardEvent)