You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package common
|
|
|
|
import "os"
|
|
|
|
// GetenvDefault retrieves an environment variable if set, or a provided default
|
|
func GetenvDefault(key string, defaultValue string) string {
|
|
val, exists := os.LookupEnv(key)
|
|
if exists {
|
|
return val
|
|
} else {
|
|
return defaultValue
|
|
}
|
|
}
|