mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 09:58:53 -05:00
18 lines
311 B
Go
18 lines
311 B
Go
package constants
|
|
|
|
const (
|
|
ConfigKeyVersion = "main.version"
|
|
ConfigKeyCommit = "main.commit"
|
|
ConfigKeyDate = "main.date"
|
|
ConfigKeyBuiltBy = "main.builtBy"
|
|
|
|
LocalBuild = DefaultBuiltBy
|
|
)
|
|
|
|
const (
|
|
DefaultVersion = "0.0.0"
|
|
DefaultCommit = "none"
|
|
DefaultDate = "unknown"
|
|
DefaultBuiltBy = "local"
|
|
)
|