Packages

An Eventual Leader Election Library for Erlang

Current section

Files

Jump to
evel src evel_app.erl
Raw

src/evel_app.erl

%% Copyright (c) 2016 Takeru Ohta <phjgt308@gmail.com>
%%
%% This software is released under the MIT License.
%% See the LICENSE file in the project root for full license information.
%%
%% @doc Application Module
%% @private
%% @end
-module(evel_app).
-behaviour(application).
%%----------------------------------------------------------------------------------------------------------------------
%% 'application' Callback API
%%----------------------------------------------------------------------------------------------------------------------
-export([start/2, stop/1]).
%%----------------------------------------------------------------------------------------------------------------------
%% 'application' Callback Functions
%%----------------------------------------------------------------------------------------------------------------------
%% @private
start(_StartType, _StartArgs) ->
evel_sup:start_link().
%% @private
stop(_State) ->
ok.