2017-02-28 01:38:47 +00:00
|
|
|
-module(leveled_app).
|
2016-09-19 18:50:11 +01:00
|
|
|
|
|
|
|
-behaviour(application).
|
|
|
|
|
|
|
|
%% Application callbacks
|
|
|
|
-export([start/2, stop/1]).
|
|
|
|
|
|
|
|
%% ===================================================================
|
|
|
|
%% Application callbacks
|
|
|
|
%% ===================================================================
|
|
|
|
|
2017-02-28 01:38:47 +00:00
|
|
|
%% Currently this is just to keep dialyzer happy
|
|
|
|
%% Run the store diretcly using leveled_bookie:book_start/4 or bookie_start/1
|
|
|
|
|
2016-09-19 18:50:11 +01:00
|
|
|
start(_StartType, _StartArgs) ->
|
2017-02-28 01:38:47 +00:00
|
|
|
leveled_sup:start_link().
|
2016-09-19 18:50:11 +01:00
|
|
|
|
|
|
|
stop(_State) ->
|
|
|
|
ok.
|