mirror of
https://github.com/lus/pasty.git
synced 2023-08-10 21:13:09 +03:00
22 lines
428 B
Go
22 lines
428 B
Go
package env
|
|
|
|
import (
|
|
"github.com/Lukaesebrot/pasty/internal/static"
|
|
"github.com/joho/godotenv"
|
|
"os"
|
|
)
|
|
|
|
// Load loads an optional .env file
|
|
func Load() {
|
|
godotenv.Load()
|
|
}
|
|
|
|
// Get returns the content of the environment variable with the given key or the given fallback
|
|
func Get(key, fallback string) string {
|
|
found := os.Getenv(static.EnvironmentVariablePrefix + key)
|
|
if found == "" {
|
|
return fallback
|
|
}
|
|
return found
|
|
}
|