-module(mutagen_sup).
-behaviour(supervisor).
%% API
-export([start_link/0]).
%% Supervisor callbacks
-export([init/1]).
-define(CHILD(Id, Mod, Type, Args), {Id, {Mod, start_link, Args},
                                     permanent, 5000, Type, [Mod]}).
start_link() ->
    supervisor:start_link({local, ?MODULE}, ?MODULE, []).
init([]) ->
    {ok, {{one_for_one, 5, 10}, [
        ?CHILD(mutagen, mutagen, worker, [])
    ]}}.
%%%===================================================================
%%% Internal functions
%%%===================================================================