mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-29 02:36:17 +00:00
Vendor libs
This commit is contained in:
34
vendor/github.com/peterhellberg/giphy/env.go
generated
vendored
Normal file
34
vendor/github.com/peterhellberg/giphy/env.go
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
package giphy
|
||||
|
||||
import (
|
||||
"os"
|
||||
"strconv"
|
||||
)
|
||||
|
||||
// Env returns a string from the ENV, or fallback variable
|
||||
func Env(key, fallback string) string {
|
||||
v := os.Getenv(key)
|
||||
if v != "" {
|
||||
return v
|
||||
}
|
||||
|
||||
return fallback
|
||||
}
|
||||
|
||||
// EnvBool returns a bool from the ENV, or fallback variable
|
||||
func EnvBool(key string, fallback bool) bool {
|
||||
if b, err := strconv.ParseBool(os.Getenv(key)); err == nil {
|
||||
return b
|
||||
}
|
||||
|
||||
return fallback
|
||||
}
|
||||
|
||||
// EnvInt returns an int from the ENV, or fallback variable
|
||||
func EnvInt(key string, fallback int) int {
|
||||
if i, err := strconv.Atoi(os.Getenv(key)); err == nil {
|
||||
return i
|
||||
}
|
||||
|
||||
return fallback
|
||||
}
|
Reference in New Issue
Block a user