rest_sup.erl 222 B

1234567891011
  1. -module(rest_sup).
  2. -behaviour(supervisor).
  3. -export([start_link/0, init/1]).
  4. -compile(export_all).
  5. start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  6. init([]) ->
  7. {ok, {{one_for_one, 5, 10}, []}}.