summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim_conv_man.erl
blob: 617ccc4b9134e1e3169742462aa2d5377e7719de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
-module(ephraim_conv_man).
-behaviour(supervisor).
-export([start_link/1]).
-export([init/1]).

start_link(EventManager) ->
    {ok, Pid} = supervisor:start_link(?MODULE, []),
    ephraim_conv_handler:start(Pid, EventManager),
    {ok, Pid}.

init(_Args) ->
    {ok, {{one_for_one, 0, 1}, []}}.