blob: ad48080edc8e38f784a7d8564aa3dfd09f6b0d4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
-module(p11p_app).
-behaviour(application).
-export([start/2, stop/1]).
-include("p11p_defs.hrl").
start(_Type, _Args) -> % Args from application spec (key 'p11p'?).
lager:notice("p11p version ~s starting", [p11p:version()]),
{ok, Sup} = p11p_sup:start_link(),
{ok, Sup}.
-spec stop([]) -> ok.
stop(_State) ->
ok.
%% Private.
|