19 lines
288 B
Go
19 lines
288 B
Go
package config
|
|
|
|
import "os"
|
|
|
|
func GetWho() string {
|
|
return getEnvValue("WHO")
|
|
}
|
|
|
|
func GetDollarServiceURL() string {
|
|
return getEnvValue("DOLLAR_SERVICE_URL")
|
|
}
|
|
|
|
func getEnvValue(key string) string {
|
|
if os.Getenv(key) == "" {
|
|
panic("key not found " + key)
|
|
}
|
|
return os.Getenv(key)
|
|
}
|