leveled/src/leveled_app.erl
martinsumner 480a029135 Renaming
Renaming to leveled

Would prefer to call it PontusDB - as a database optimised for HEAD
requests.  But our heroes often leave us.
2017-02-28 01:38:47 +00:00

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.