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:
parent
f64e62d16e
commit
3cbff94709
@ -4,6 +4,5 @@
|
||||
{vsn, "0.0.1"},
|
||||
{registered, []},
|
||||
{applications, [kernel, stdlib]},
|
||||
{mod, {enacl_app, []}},
|
||||
{env, []}
|
||||
]}.
|
||||
|
@ -1,10 +0,0 @@
|
||||
-module(enacl_app).
|
||||
-behaviour(application).
|
||||
|
||||
-export([start/2, stop/1]).
|
||||
|
||||
start(_StartType, _StartArgs) ->
|
||||
enacl_sup:start_link().
|
||||
|
||||
stop(_State) ->
|
||||
ok.
|
@ -1,5 +1,6 @@
|
||||
%%% @doc module enacl_nif provides the low-level interface to the NaCl/Sodium NIFs.
|
||||
%%% @end
|
||||
%%% @private
|
||||
-module(enacl_nif).
|
||||
|
||||
%% Public key auth
|
||||
|
Loading…
x
Reference in New Issue
Block a user