mirror of
https://github.com/correl/rebar.git
synced 2024-11-23 19:19:54 +00:00
29 lines
712 B
Erlang
29 lines
712 B
Erlang
|
|
||
|
-module({{appid}}_sup).
|
||
|
|
||
|
-behaviour(supervisor).
|
||
|
|
||
|
%% API
|
||
|
-export([start_link/0]).
|
||
|
|
||
|
%% Supervisor callbacks
|
||
|
-export([init/1]).
|
||
|
|
||
|
%% Helper macro for declaring children of supervisor
|
||
|
-define(CHILD(I, Type), {I, {I, start_link, []}, permanent, 5000, Type, [I]}).
|
||
|
|
||
|
%% ===================================================================
|
||
|
%% API functions
|
||
|
%% ===================================================================
|
||
|
|
||
|
start_link() ->
|
||
|
supervisor:start_link({local, ?MODULE}, ?MODULE, []).
|
||
|
|
||
|
%% ===================================================================
|
||
|
%% Supervisor callbacks
|
||
|
%% ===================================================================
|
||
|
|
||
|
init([]) ->
|
||
|
{ok, {one_for_one, 5, 10}, []}.
|
||
|
|