summaryrefslogtreecommitdiff
path: root/test/rebar_new_SUITE_data/plugin_tpl/_checkouts/tpl/src/tpl.erl
blob: 529bcb8b19fca38ea06040bceae8c974df711c6d (plain)
1
2
3
4
5
6
7
8
-module('tpl').

-export([init/1]).

-spec init(rebar_state:t()) -> {ok, rebar_state:t()}.
init(State) ->
    {ok, State1} = 'tpl_prv':init(State),
    {ok, State1}.