Rebar and eunit changes
Initial rebar compile - which exposed eunit tets failures associated with changes to file structures and filename references
This commit is contained in:
parent
a1c970a66a
commit
4e28e4173c
6 changed files with 96 additions and 26 deletions
16
src/eleveleddb_app.erl
Normal file
16
src/eleveleddb_app.erl
Normal file
|
@ -0,0 +1,16 @@
|
|||
-module(eleveleddb_app).
|
||||
|
||||
-behaviour(application).
|
||||
|
||||
%% Application callbacks
|
||||
-export([start/2, stop/1]).
|
||||
|
||||
%% ===================================================================
|
||||
%% Application callbacks
|
||||
%% ===================================================================
|
||||
|
||||
start(_StartType, _StartArgs) ->
|
||||
eleveleddb_sup:start_link().
|
||||
|
||||
stop(_State) ->
|
||||
ok.
|
Loading…
Add table
Add a link
Reference in a new issue