Packages

Native Erlang 0MQ implementation

Current section

Files

Jump to
ezmq src ezmq_app.erl
Raw

src/ezmq_app.erl

%% This Source Code Form is subject to the terms of the Mozilla Public
%% License, v. 2.0. If a copy of the MPL was not distributed with this
%% file, You can obtain one at http://mozilla.org/MPL/2.0/.
-module(ezmq_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%% ===================================================================
%% Application callbacks
%% ===================================================================
start(_StartType, _StartArgs) ->
ezmq_sup:start_link().
stop(_State) ->
ok.