You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 line
451 B

  1. % @doc mygrispproject top level supervisor.
  2. % @end
  3. -module(mygrispproject_sup).
  4. -behavior(supervisor).
  5. % API
  6. -export([start_link/0]).
  7. % Callbacks
  8. -export([init/1]).
  9. %--- API -----------------------------------------------------------------------
  10. start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  11. %--- Callbacks -----------------------------------------------------------------
  12. init([]) -> {ok, { {one_for_all, 0, 1}, []} }.