Current section
Files
Jump to
Current section
Files
src/ws_sup.erl
-module(ws_sup).
-behaviour(supervisor).
-export([start_link/0]).
-export([init/1]).
start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
init([]) ->
SupFlags = #{strategy => one_for_one,
intensity => 10,
period => 10},
{ok, {SupFlags, []}}.