timetable-mgr/helpers/config.go

23 lines
395 B
Go
Raw Permalink 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
2024-06-30 21:24:53 +01:00
const versionNum string = "2024.06.0"
const versionSuffix string = ""
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
}