timetable-mgr/helpers/config.go

23 lines
404 B
Go
Raw Normal View History

2023-07-15 23:00:48 +01:00
package helpers
2023-07-15 22:32:46 +01:00
import (
2023-07-18 00:25:13 +01:00
"os"
2023-07-15 22:32:46 +01:00
)
// Version Constants
const versionNum string = "2024.3.0"
2023-07-15 22:32:46 +01:00
const versionSuffix string = "beta"
2023-07-15 23:00:48 +01:00
const Version string = versionNum + "-" + versionSuffix
2023-07-15 22:32:46 +01:00
// Environment Variables
var Runtime string = getRuntime()
2023-07-15 22:32:46 +01:00
// Functions
func getRuntime() string {
var runtimeEnv string = os.Getenv("runtime")
if runtimeEnv == "" {
runtimeEnv = "unknown"
}
return runtimeEnv
}