/priv/skel/src/skel.erl
Erlang | 30 lines | 18 code | 5 blank | 7 comment | 0 complexity | 21985167eb7c5aaf87f89d2691dd9e3e MD5 | raw file
Possible License(s): MIT
- %% @author author <author@example.com>
- %% @copyright YYYY author.
- %% @doc TEMPLATE.
- -module(skel).
- -author('author <author@example.com>').
- -export([start/0, stop/0]).
- ensure_started(App) ->
- case application:start(App) of
- ok ->
- ok;
- {error, {already_started, App}} ->
- ok
- end.
- %% @spec start() -> ok
- %% @doc Start the skel server.
- start() ->
- skel_deps:ensure(),
- ensure_started(crypto),
- application:start(skel).
- %% @spec stop() -> ok
- %% @doc Stop the skel server.
- stop() ->
- Res = application:stop(skel),
- application:stop(crypto),
- Res.