flm01/server/api/flukso/src/flukso_app.erl
Bart Van Der Meerssche 3a28838b29 change repository layout
2010-07-07 16:37:03 +02:00

22 lines
513 B
Erlang

%% @author author <author@example.com>
%% @copyright YYYY author.
%% @doc Callbacks for the flukso application.
-module(flukso_app).
-author('author <author@example.com>').
-behaviour(application).
-export([start/2,stop/1]).
%% @spec start(_Type, _StartArgs) -> ServerRet
%% @doc application start callback for flukso.
start(_Type, _StartArgs) ->
flukso_deps:ensure(),
flukso_sup:start_link().
%% @spec stop(_State) -> ServerRet
%% @doc application stop callback for flukso.
stop(_State) ->
ok.