
Renaming to leveled Would prefer to call it PontusDB - as a database optimised for HEAD requests. But our heroes often leave us.
19 lines
487 B
Erlang
19 lines
487 B
Erlang
-module(leveled_app).
|
|
|
|
-behaviour(application).
|
|
|
|
%% Application callbacks
|
|
-export([start/2, stop/1]).
|
|
|
|
%% ===================================================================
|
|
%% Application callbacks
|
|
%% ===================================================================
|
|
|
|
%% Currently this is just to keep dialyzer happy
|
|
%% Run the store diretcly using leveled_bookie:book_start/4 or bookie_start/1
|
|
|
|
start(_StartType, _StartArgs) ->
|
|
leveled_sup:start_link().
|
|
|
|
stop(_State) ->
|
|
ok.
|