mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-16 16:00:11 -05:00
General code spring cleaning: * move file paths from `consts` package to `filepaths` * move InitData and ExportData to query and control packages
15 lines
283 B
Go
15 lines
283 B
Go
package runtime
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/turbot/steampipe/constants"
|
|
"github.com/turbot/steampipe/utils"
|
|
)
|
|
|
|
var (
|
|
ExecutionID = utils.GetMD5Hash(fmt.Sprintf("%d", time.Now().Nanosecond()))
|
|
PgClientAppName = fmt.Sprintf("%s_%s", constants.AppName, ExecutionID)
|
|
)
|