Packages

An Erlang library to create and connect an arbitrary cluster of nodes

Current section

Files

Jump to
braid src braid_app.erl
Raw

src/braid_app.erl

-module(braid_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_Type, _Args) ->
braid_table:init(),
braid_net:init(),
{ok, self()}.
stop(_State) -> ok.
%% internal functions