mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
9 lines
224 B
Go
9 lines
224 B
Go
package constants
|
|
|
|
const VersionDefault = "Piped into LDflags on build. You are probably running Railway CLI from source."
|
|
|
|
var Version string = VersionDefault
|
|
|
|
func IsDevVersion() bool {
|
|
return Version == VersionDefault
|
|
}
|