View Source dotenv_config_storage (dotenv_config v2.3.1)

Summary

Types

-type config_item_name() :: binary().
-type config_item_value() :: any().
-type parsed_config() :: [{config_item_name(), config_item_value()}].

Functions

-spec clean() -> ok.
-spec get(config_item_name()) -> {ok, config_item_value()} | {error, not_found}.
-spec get_all() -> parsed_config().
Link to this function

set(ConfigItemName, ConfigItemValue)

View Source
-spec set(config_item_name(), config_item_value()) -> ok.
-spec store(parsed_config()) -> ok.