mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-23 21:09:15 -05:00
15 lines
291 B
Go
15 lines
291 B
Go
package runtime
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/turbot/steampipe/pkg/constants"
|
|
"github.com/turbot/steampipe/pkg/utils"
|
|
)
|
|
|
|
var (
|
|
ExecutionID = utils.GetMD5Hash(fmt.Sprintf("%d", time.Now().Nanosecond()))
|
|
PgClientAppName = fmt.Sprintf("%s_%s", constants.AppName, ExecutionID)
|
|
)
|