blob: ba16ef464d483122833c33c0d0c505396f905d95 [file] [log] [blame]
%% @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.