View Source dotenv_config_storage (dotenv_config v2.3.3)
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().
-spec set(config_item_name(), config_item_value()) -> ok.
-spec store(parsed_config()) -> ok.