mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-19 13:00:09 -04:00
General code spring cleaning: * move file paths from `consts` package to `filepaths` * move InitData and ExportData to query and control packages
16 lines
271 B
Go
16 lines
271 B
Go
package control
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/turbot/steampipe/db/db_common"
|
|
"github.com/turbot/steampipe/workspace"
|
|
)
|
|
|
|
type InitData struct {
|
|
Ctx context.Context
|
|
Workspace *workspace.Workspace
|
|
Client db_common.Client
|
|
Result *db_common.InitResult
|
|
}
|