diff options
author | Daniel <0xc0decafe@users.noreply.github.com> | 2016-10-05 12:42:59 +0200 |
---|---|---|
committer | Daniel <0xc0decafe@users.noreply.github.com> | 2016-10-05 12:42:59 +0200 |
commit | e7d5812d17e1165492ad342c016c80bad24ae9aa (patch) | |
tree | 3c67a47eb255f04f831f535848658f20d9493480 /src/ss7MAPer_app.erl | |
parent | b99ffff4982e19424fc78abadd57100a8032bdad (diff) |
Structure changed in regard to erlang OTP. Added binary release.
Diffstat (limited to 'src/ss7MAPer_app.erl')
-rw-r--r-- | src/ss7MAPer_app.erl | 12 |
1 files changed, 12 insertions, 0 deletions
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 <mail@c0decafe.de>'). + +-behaviour(application). + +-export([start/2, stop/1]). + +start(_Type, Configfile) -> + ss7MAPer_sup:start_link(Configfile). + +stop(_State) -> + ok. |