mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-23 08:00:51 -05:00
17 lines
315 B
Go
17 lines
315 B
Go
package constants
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/turbot/steampipe/pkg/version"
|
|
)
|
|
|
|
const (
|
|
DashboardServerDefaultPort = 9194
|
|
DashboardAssetsImageRefFormat = "us-docker.pkg.dev/steampipe/steampipe/assets:%s"
|
|
)
|
|
|
|
var (
|
|
DashboardAssetsImageRef = fmt.Sprintf(DashboardAssetsImageRefFormat, version.VersionString)
|
|
)
|