Packages

EPMDLess application (allows connecting erlang nodes without EPMD)

Current section

Files

Jump to
epmdless src epmdless_app.erl
Raw

src/epmdless_app.erl

-module(epmdless_app).
-behaviour(application).
-export([start/0]).
-export([start/2, stop/1]).
start() ->
application:start(?MODULE).
start(_StartType, _StartArgs) ->
epmdless_dist_sup:start_link().
stop(_State) ->
ok.