Current section

Files

Jump to
rebar3_proto_plugin src rebar3_proto_plugin.erl
Raw

src/rebar3_proto_plugin.erl

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