mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-17 19:00:12 -05:00
13 lines
223 B
Go
13 lines
223 B
Go
package export
|
|
|
|
import "context"
|
|
|
|
type Target struct {
|
|
exporter Exporter
|
|
filePath string
|
|
}
|
|
|
|
func (t *Target) Export(ctx context.Context, input ExportSourceData) error {
|
|
return t.exporter.Export(ctx, input, t.filePath)
|
|
}
|