Packages

A plugin to send commands to a running rebar3 shell

Current section

Files

Jump to
rebar3_shellrpc src rebar3_shellrpc.erl
Raw

src/rebar3_shellrpc.erl

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