leveled/src/eleveleddb_app.erl
martinsumner 4e28e4173c Rebar and eunit changes
Initial rebar compile - which exposed eunit tets failures associated
with changes to file structures and filename references
2016-09-19 18:50:11 +01:00

16 lines
365 B
Erlang

-module(eleveleddb_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
eleveleddb_sup:start_link().
stop(_State) ->
ok.