forked from mystiq/dex
10 lines
147 B
Go
10 lines
147 B
Go
package ent
|
|
|
|
import "os"
|
|
|
|
func getenv(key, defaultVal string) string {
|
|
if val := os.Getenv(key); val != "" {
|
|
return val
|
|
}
|
|
return defaultVal
|
|
}
|