/__w/shurbej/shurbej/_build/test/cover/aggregate/shurbej_sup.html

1 -module(shurbej_sup).
2 -behaviour(supervisor).
3
4 -export([start_link/0, init/1]).
5
6 start_link() ->
7 1 supervisor:start_link({local, ?MODULE}, ?MODULE, []).
8
9 init([]) ->
10 1 {ok, {#{strategy => one_for_one, intensity => 5, period => 10}, []}}.
Line Hits Source