Current section
Files
Jump to
Current section
Files
src/passage_app.erl
%% @copyright 2017 Takeru Ohta <phjgt308@gmail.com>
%%
%% @private
-module(passage_app).
-behaviour(application).
%%------------------------------------------------------------------------------
%% 'application' Callback API
%%------------------------------------------------------------------------------
-export([start/2, stop/1]).
%%------------------------------------------------------------------------------
%% 'application' Callback Functions
%%------------------------------------------------------------------------------
%% @private
start(_StartType, _StartArgs) ->
passage_sup:start_link().
%% @private
stop(_State) ->
ok.