1%% -*- mode: erlang; tab-width: 4; indent-tabs-mode: 1; st-rulers: [70] -*-
2%% vim: ts=4 sw=4 ft=erlang noet
3%%%-------------------------------------------------------------------
4%%% @author Andrew Bennett <potatosaladx@gmail.com>
5%%% @copyright 2014-2015, Andrew Bennett
6%%% @doc
7%%%
8%%% @end
9%%% Created :  06 Aug 2015 by Andrew Bennett <potatosaladx@gmail.com>
10%%%-------------------------------------------------------------------
11-module(jose_app).
12-behaviour(application).
13
14%% Application callbacks
15-export([start/2]).
16-export([stop/1]).
17-export([config_change/3]).
18
19%%%===================================================================
20%%% Application callbacks
21%%%===================================================================
22
23start(_Type, _Args) ->
24	jose_sup:start_link().
25
26stop(_State) ->
27	ok.
28
29config_change(_Changed, _New, _Removed) ->
30	jose_server:config_change().
31