summaryrefslogtreecommitdiff
path: root/src/fib_sup.erl
blob: 06efb9db2c07c05464021fcfcf3c9f2d7091c581 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
-module(fib_sup).
-behaviour(supervisor).

-export([start_link/0]).
-export([init/1]).

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

init([]) ->
	Procs = [],
	{ok, {{one_for_one, 1, 5}, Procs}}.