Packages

A library to mock registered processes

Current section

Files

Jump to
nuntius src nuntius_app.erl
Raw

src/nuntius_app.erl

%% @hidden
%% @doc application behaviour implementation.
-module(nuntius_app).
-behaviour(application).
-export([start/2, stop/1]).
-spec start(application:start_type(), term()) -> {ok, pid()} | {error, term()}.
start(_StartType, _StartArgs) ->
nuntius_sup:start_link().
-spec stop(_) -> ok.
stop(_) ->
ok.