%%%---------------------------------------------------------------------- %%% File : yaws_app.erl %%% Author : Claes Wikstrom %%% Purpose : %%% Created : 16 Jan 2002 by Claes Wikstrom %%%---------------------------------------------------------------------- -module(yaws_app). -author('klacke@hyber.org'). -behaviour(application). -export([start/2,stop/1]). %% start start(_Type, _StartArgs) -> yaws_sup:start_link(). %% stop stop(_State) -> ok.