1 2 3 4 5 6 7 8 9
-module(chttpd_app). -behaviour(application). -export([start/2, stop/1]). start(_Type, StartArgs) -> chttpd_sup:start_link(StartArgs). stop(_State) -> ok.