mirror of
https://github.com/turbot/steampipe.git
synced 2026-05-10 15:01:45 -04:00
Only top level resources can have with and param blocks. Closes #2872 Refactor resource and dashboard run hierarchies to use base impl structs. Closes #2873
11 lines
319 B
Go
11 lines
319 B
Go
package dashboardexecute
|
|
|
|
import (
|
|
"github.com/turbot/steampipe/pkg/dashboard/dashboardtypes"
|
|
)
|
|
|
|
type RuntimeDependencyPublishTarget struct {
|
|
transform func(*dashboardtypes.ResolvedRuntimeDependencyValue) *dashboardtypes.ResolvedRuntimeDependencyValue
|
|
channel chan *dashboardtypes.ResolvedRuntimeDependencyValue
|
|
}
|