blob: 4b8356fb7193e97923f5faebf8a9c07ba1cd7931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-module(chttpd_app).
-behaviour(application).
-export([start/2, stop/1]).
-include("chttpd.hrl").
start(_Type, StartArgs) ->
chttpd_sup:start_link(StartArgs).
stop(_State) ->
ok.
|