about summary refs log tree commit diff
path: root/src/stomp.erl_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/stomp.erl_sup.erl')
-rw-r--r--src/stomp.erl_sup.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/stomp.erl_sup.erl b/src/stomp.erl_sup.erl
new file mode 100644
index 000000000000..9c41cba1f202
--- /dev/null
+++ b/src/stomp.erl_sup.erl
@@ -0,0 +1,12 @@
+-module(stomp.erl_sup).
+-behaviour(supervisor).
+
+-export([start_link/0]).
+-export([init/1]).
+
+start_link() ->
+    supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+
+init([]) ->
+    Procs = [],
+    {ok, {{one_for_one, 1, 5}, Procs}}.