summaryrefslogtreecommitdiff
path: root/apps/chttpd/src/chttpd_sup.erl
blob: 4786350b3245c2a8e1643dafe7c701e20a493f0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-module(chttpd_sup).
-behaviour(supervisor).
-export([init/1]).

-export([start_link/1]).

start_link(Args) ->
    supervisor:start_link({local,?MODULE}, ?MODULE, Args).

init([]) ->
    Mod = chttpd,
    Spec = {Mod, {Mod,start_link,[]}, permanent, 100, worker, [Mod]},
    {ok, {{one_for_one, 3, 10}, [Spec]}}.