Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Configuration.Dotenv.Environment
Documentation
getEnvironment :: IO [(String, String)] #
getEnvironment
retrieves the entire environment as a
list of (key,value)
pairs.
If an environment entry does not contain an '='
character,
the key
is the whole entry and the value
is the empty string.
lookupEnv :: String -> IO (Maybe String) Source #
Re-export System.Environment or System.Environment.Blank helpers.
setEnv :: String -> String -> IO () Source #
Re-export System.Environment or System.Environment.Blank helpers.