aboutsummaryrefslogtreecommitdiff
path: root/src/ss7test_sup.erl
diff options
context:
space:
mode:
authorDaniel <0xc0decafe@users.noreply.github.com>2016-10-05 12:42:59 +0200
committerDaniel <0xc0decafe@users.noreply.github.com>2016-10-05 12:42:59 +0200
commite7d5812d17e1165492ad342c016c80bad24ae9aa (patch)
tree3c67a47eb255f04f831f535848658f20d9493480 /src/ss7test_sup.erl
parentb99ffff4982e19424fc78abadd57100a8032bdad (diff)
Structure changed in regard to erlang OTP. Added binary release.
Diffstat (limited to 'src/ss7test_sup.erl')
-rw-r--r--src/ss7test_sup.erl27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/ss7test_sup.erl b/src/ss7test_sup.erl
deleted file mode 100644
index 1b47715..0000000
--- a/src/ss7test_sup.erl
+++ /dev/null
@@ -1,27 +0,0 @@
--module(ss7test_sup).
-
--behaviour(supervisor).
-
-%% API
--export([start_link/0]).
-
-%% Supervisor callbacks
--export([init/1]).
-
-%% Helper macro for declaring children of supervisor
--define(CHILD(I, Type), {I, {I, start_link, []}, permanent, 5000, Type, [I]}).
-
-%% ===================================================================
-%% API functions
-%% ===================================================================
-
-start_link() ->
- supervisor:start_link({local, ?MODULE}, ?MODULE, []).
-
-%% ===================================================================
-%% Supervisor callbacks
-%% ===================================================================
-
-init([]) ->
- {ok, { {one_for_one, 5, 10}, []} }.
-