Add zomp.meta, fix "key_block " typo.

This commit is contained in:
Craig Everett
2023-04-21 11:49:14 +09:00
parent 36ddcfc97f
commit ab812e4285
2 changed files with 31 additions and 20 deletions
+24 -18
View File
@@ -75,8 +75,8 @@
% OTP Application Interface
%-export([start/0, stop/0]).
%-export([start/2, stop/1]).
-export([start/0, stop/0]).
-export([start/2, stop/1]).
%%% Types
@@ -1478,19 +1478,25 @@ eu(N, Size) ->
% /v2/debug/crash
%-spec start() -> ok | {error, Reason :: term()}.
%
%start() ->
% application:start(vanillae).
%
%
%-spec start(normal, term()) -> {ok, pid()}.
%
%start(normal, _Args) ->
% vanillae_sup:start_link().
%
%
%-spec stop(term()) -> ok.
%
%stop(_State) ->
% ok.
-spec start() -> ok | {error, Reason :: term()}.
start() ->
application:start(vanillae).
-spec stop() -> ok | {error, Reason :: term()}.
stop() ->
application:stop(vanillae).
-spec start(normal, term()) -> {ok, pid()}.
start(normal, _Args) ->
vanillae_sup:start_link().
-spec stop(term()) -> ok.
stop(_State) ->
ok.
+6 -1
View File
@@ -2,7 +2,12 @@
{author,"Craig Everett"}.
{c_email,"ceverett@tsuriai.jp"}.
{copyright,"Craig Everett"}.
{deps,[]}.
{deps,[{"otpr","aeserialization",{0,1,0}},
{"otpr","aesophia",{7,1,0}},
{"otpr","zj",{1,1,0}},
{"otpr","eblake2",{1,0,0}},
{"otpr","getopt",{1,0,2}},
{"otpr","aebytecode",{3,2,0}}]}.
{desc,"Erlang library for ecommerce use of the Aeternity blockchain"}.
{file_exts,[]}.
{key_name,none}.