blob: 9c41cba1f2020ed6fd9f8fcf0b992269142b2833 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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}}.
|