mirror of
https://github.com/aykhans/movier.git
synced 2025-04-17 04:13:12 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
package utils
|
|
|
|
import "os"
|
|
|
|
func GetEnv(key, default_ string) string {
|
|
value := os.Getenv(key)
|
|
if value == "" {
|
|
return default_
|
|
}
|
|
return value
|
|
}
|