mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-21 16:00:13 -04:00
11 lines
178 B
Go
11 lines
178 B
Go
package db_common
|
|
|
|
import (
|
|
"github.com/turbot/pipe-fittings/v2/error_helpers"
|
|
)
|
|
|
|
type AcquireSessionResult struct {
|
|
Session *DatabaseSession
|
|
error_helpers.ErrorAndWarnings
|
|
}
|