Fred Boniface c9a6ef8006
All checks were successful
Go Test / test (push) Successful in 34s
Bump version
2025-01-18 00:28:22 +00:00

23 lines
395 B
Go

package helpers
import (
"os"
)
// Version Constants
const versionNum string = "2025.01.1"
const versionSuffix string = ""
const Version string = versionNum + versionSuffix
// Environment Variables
var Runtime string = getRuntime()
// Functions
func getRuntime() string {
var runtimeEnv string = os.Getenv("runtime")
if runtimeEnv == "" {
runtimeEnv = "unknown"
}
return runtimeEnv
}