Current section

Files

Jump to
rebar3_live src rebar3_live.erl
Raw

src/rebar3_live.erl

-module('rebar3_live').
-export([init/1]).
-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
{ok, State1} = 'rebar3_live_prv':init(State),
{ok, State1}.