summaryrefslogtreecommitdiff
path: root/deps/mochiweb/priv/skel/src/skel_app.erl
blob: 7ee8b50e048592f7e6d4f9e39467aab9605c5b7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
%% @author author <author@example.com>
%% @copyright YYYY author.

%% @doc Callbacks for the skel application.

-module(skel_app).
-author('author <author@example.com>').

-behaviour(application).
-export([start/2, stop/1]).


%% @spec start(_Type, _StartArgs) -> ServerRet
%% @doc application start callback for skel.
start(_Type, _StartArgs) ->
    skel_deps:ensure(),
    skel_sup:start_link().

%% @spec stop(_State) -> ServerRet
%% @doc application stop callback for skel.
stop(_State) ->
    ok.


%%
%% Tests
%%
-include_lib("eunit/include/eunit.hrl").
-ifdef(TEST).
-endif.