mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
9 lines
184 B
Erlang
9 lines
184 B
Erlang
|
-module(configure_deps).
|
||
|
|
||
|
-export([init/1]).
|
||
|
|
||
|
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
|
||
|
init(State) ->
|
||
|
{ok, State1} = configure_deps_prv:init(State),
|
||
|
{ok, State1}.
|