Current section
Files
Jump to
Current section
Files
src/bloodbath_app.erl
%% @doc bloodbath public API
-module(bloodbath_app).
-behaviour(application).
-export([start/2, stop/1]).
-spec start(atom(), list()) -> {ok, pid()}.
start(_StartType, _StartArgs) ->
bloodbath_sup:start_link().
-spec stop(atom()) -> ok.
stop(_State) ->
ok.