12345678910111213141516171819202122 |
- -module(tcp_echo_sup).
- -behaviour(supervisor).
- -export([start_link/0]).
- -export([init/1]).
- -spec start_link() -> {ok, pid()}.
- start_link() ->
- supervisor:start_link({local, ?MODULE}, ?MODULE, []).
- init([]) ->
- {ok, {{one_for_one, 10, 10}, []}}.
|