chore(erlang-presentation): Prepare for depot merge

This commit is contained in:
Vincent Ambo 2019-12-21 00:37:07 +00:00
parent 421ef0a77f
commit 8ab71587a7
9 changed files with 0 additions and 1 deletions

View file

@ -1,24 +0,0 @@
-module(hello_sup).
-behaviour(supervisor).
-export([start_link/0, init/1]).
%%% Module API
start_link() ->
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
%%% Supervisor callbacks
init([]) ->
Children = [hello_spec()],
{ok, { {one_for_one, 5, 10}, Children}}.
%%% Private
hello_spec() ->
#{id => hello_server2,
start => {hello_server2, start_link, []},
restart => permanent,
shutdown => 5000,
type => worker,
module => [hello_server2]}.