From e7d5812d17e1165492ad342c016c80bad24ae9aa Mon Sep 17 00:00:00 2001 From: Daniel <0xc0decafe@users.noreply.github.com> Date: Wed, 5 Oct 2016 12:42:59 +0200 Subject: Structure changed in regard to erlang OTP. Added binary release. --- src/ss7MAPer_app.erl | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/ss7MAPer_app.erl (limited to 'src/ss7MAPer_app.erl') diff --git a/src/ss7MAPer_app.erl b/src/ss7MAPer_app.erl new file mode 100644 index 0000000..3dc2500 --- /dev/null +++ b/src/ss7MAPer_app.erl @@ -0,0 +1,12 @@ +-module(ss7MAPer_app). +-author('Daniel Mende '). + +-behaviour(application). + +-export([start/2, stop/1]). + +start(_Type, Configfile) -> + ss7MAPer_sup:start_link(Configfile). + +stop(_State) -> + ok. -- cgit v1.2.3