Current section

Files

Jump to
rebar3_hex src rebar3_hex.erl
Raw

src/rebar3_hex.erl

-module(rebar3_hex).
-export([init/1]).
init(State) ->
lists:foldl(fun provider_init/2, {ok, State}, [rebar3_hex_user
,rebar3_hex_config
,rebar3_hex_key
,rebar3_hex_info
,rebar3_hex_owner
,rebar3_hex_docs
,rebar3_hex_search
,rebar3_hex_pkg]).
provider_init(Module, {ok, State}) ->
Module:init(State).