summaryrefslogtreecommitdiff
path: root/src/pbx_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/pbx_sup.erl')
-rw-r--r--src/pbx_sup.erl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pbx_sup.erl b/src/pbx_sup.erl
index 9dd7f60..e9cf6ff 100644
--- a/src/pbx_sup.erl
+++ b/src/pbx_sup.erl
@@ -12,7 +12,7 @@ start_link() ->
init([]) ->
{ok, {
- {one_for_one, 5, 10},
- [ ?CHILD(tda, worker) ]
- } }.
-
+ {one_for_one, 5, 10}, [
+ ?CHILD(tda, worker),
+ ?CHILD(counter, worker)
+ ]}}.