Packages

A few sentences (a paragraph) describing the project.

Current section

Files

Jump to
cwikla_pollution lib pollution_app.erl
Raw

lib/pollution_app.erl

%%%-------------------------------------------------------------------
%% @doc pollution public API
%% @end
%%%-------------------------------------------------------------------
-module(pollution_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
pollution_supervisor:start_link().
stop(_State) ->
ok.
%% internal functions