Current section

Files

Jump to
shotgun src shotgun_app.erl
Raw

src/shotgun_app.erl

%% @hidden
-module(shotgun_app).
-behavior(application).
-export([
start/2,
stop/1
]).
-spec start(term(), term()) -> {ok, pid()}.
start(_StartType, _StartArgs) ->
shotgun_sup:start_link().
-spec stop(term()) -> ok.
stop(_State) ->
ok.