Clean up: remove the application module which we don't need for a library.

This is not like the `crypto` subsystem, where a runner is needed to keep the
crypto system up and running. Rather, we can run without an application runner.
This commit is contained in:
Jesper Louis Andersen 2014-11-25 14:12:54 +01:00
parent f64e62d16e
commit 3cbff94709
3 changed files with 1 additions and 11 deletions

View File

@ -4,6 +4,5 @@
{vsn, "0.0.1"}, {vsn, "0.0.1"},
{registered, []}, {registered, []},
{applications, [kernel, stdlib]}, {applications, [kernel, stdlib]},
{mod, {enacl_app, []}},
{env, []} {env, []}
]}. ]}.

View File

@ -1,10 +0,0 @@
-module(enacl_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
enacl_sup:start_link().
stop(_State) ->
ok.

View File

@ -1,5 +1,6 @@
%%% @doc module enacl_nif provides the low-level interface to the NaCl/Sodium NIFs. %%% @doc module enacl_nif provides the low-level interface to the NaCl/Sodium NIFs.
%%% @end %%% @end
%%% @private
-module(enacl_nif). -module(enacl_nif).
%% Public key auth %% Public key auth