Current section

Files

Jump to
replayq src replayq_app.erl
Raw

src/replayq_app.erl

-module(replayq_app).
-behaviour(application).
%% `application' API
-export([start/2, stop/1]).
%%------------------------------------------------------------------------------
%% `application' API
%%------------------------------------------------------------------------------
-spec start(application:start_type(), term()) -> {ok, pid()}.
start(_Type, _Args) ->
replayq_sup:start_link().
-spec stop(term()) -> ok.
stop(_State) ->
ok.