%%%------------------------------------------------------------------- %%% @author Tristan Sloughter %%% @copyright (C) 2017, Tristan Sloughter %%% @doc %%% %%% @end %%% Created : 16 Sep 2017 by Tristan Sloughter %%%------------------------------------------------------------------- -module(augle_app). -behaviour(application). -export([start/2, stop/1]). start(_StartType, _StartArgs) -> augle_sup:start_link(). stop(_State) -> ok.