mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-14 19:00:10 -05:00
13 lines
232 B
Go
13 lines
232 B
Go
package control
|
|
|
|
import (
|
|
"github.com/turbot/steampipe/db/db_common"
|
|
"github.com/turbot/steampipe/workspace"
|
|
)
|
|
|
|
type InitData struct {
|
|
Workspace *workspace.Workspace
|
|
Client db_common.Client
|
|
Result *db_common.InitResult
|
|
}
|