erl-env
erl-env copied to clipboard
Make retrieving configuration parameters super fast(7x faster than application:get_env)and stable.
Results
1
erl-env issues
Sort by
recently updated
recently updated
newest added
Would it be possible to also generate `get_/1,get_/2` functions like these: ```erlang % eenv_appname.beam -module(eenv_appname). -export([get/1]). -export([get_/1, get_/2]). get(ip) -> {ok, "127.0.0.1"}; get(_) -> undefined. %% extra API get_(ip) ->...