Packages

A gateway for receiving and redistributing data from machine sensors

Current section

Files

Jump to
geo_gateway src geo_gateway_app.erl
Raw

src/geo_gateway_app.erl

%%%-------------------------------------------------------------------
%% @doc geo_gateway public API
%% @end
%%%-------------------------------------------------------------------
-module(geo_gateway_app).
-behaviour(application).
%% Application callbacks
-export([start/2, stop/1]).
%%====================================================================
%% API
%%====================================================================
start(_StartType, _StartArgs) ->
geo_gateway_sup:start_link().
%%--------------------------------------------------------------------
stop(_State) ->
ok.
%%====================================================================
%% Internal functions
%%====================================================================