%% @author Andy Gross %% @author Justin Sheehy %% @doc Callbacks for the webmachine_demo application. -module(webmachine_demo_app). -behaviour(application). -export([start/2,stop/1]). %% @spec start(_Type, _StartArgs) -> ServerRet %% @doc application start callback for webmachine_demo. start(_Type, _StartArgs) -> webmachine_demo_sup:start_link(). %% @spec stop(_State) -> ServerRet %% @doc application stop callback for webmachine_demo. stop(_State) -> ok.