Packages

An accessible config library for Erlang applications

Current section

Files

Jump to
gourd src gourd_util.erl
Raw

src/gourd_util.erl

-module(gourd_util).
-export([os_getenv/1]).
%% Work around for os:getenv not being able to be mocked.
-spec os_getenv(string()) -> false | string().
os_getenv(S) ->
os:getenv(S).