-module(chttpd_app). -behaviour(application). -export([start/2, stop/1]). -include("chttpd.hrl"). start(_Type, StartArgs) -> chttpd_sup:start_link(StartArgs). stop(_State) -> ok.