summaryrefslogtreecommitdiffstats
path: root/src/core/ephraim_conv_man.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ephraim_conv_man.erl')
-rw-r--r--src/core/ephraim_conv_man.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/ephraim_conv_man.erl b/src/core/ephraim_conv_man.erl
new file mode 100644
index 0000000..617ccc4
--- /dev/null
+++ b/src/core/ephraim_conv_man.erl
@@ -0,0 +1,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}, []}}.