-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.go
More file actions
40 lines (35 loc) · 812 Bytes
/
env.go
File metadata and controls
40 lines (35 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package main
import (
"fmt"
"os"
"strconv"
)
var (
prefix = ""
)
func getEnvOrString(key string, defaultValue string) string {
if envValue, ok := os.LookupEnv(key); ok {
return envValue
}
return defaultValue
}
func getEnvOrBool(key string, defaultValue bool) bool {
if envValue, ok := os.LookupEnv(key); ok {
if boolValue, err := strconv.ParseBool(envValue); err != nil {
panic(fmt.Errorf("Environment variable %s is invalid: %s", key, err))
} else {
return boolValue
}
}
return defaultValue
}
func getEnvOrInt(key string, defaultValue int) int {
if envValue, ok := os.LookupEnv(key); ok {
if intValue, err := strconv.Atoi(envValue); err != nil {
panic(fmt.Errorf("Environment variable %s is invalid: %s", key, err))
} else {
return intValue
}
}
return defaultValue
}